kopia lustrzana https://github.com/glidernet/python-ogn-client
Add kwargs for the callback function
rodzic
7669ac4559
commit
2c1612de93
|
@ -52,7 +52,7 @@ class AprsClient:
|
||||||
|
|
||||||
self._kill = True
|
self._kill = True
|
||||||
|
|
||||||
def run(self, callback, timed_callback=lambda client: None, autoreconnect=False):
|
def run(self, callback, timed_callback=lambda client: None, autoreconnect=False, **kwargs):
|
||||||
while not self._kill:
|
while not self._kill:
|
||||||
try:
|
try:
|
||||||
keepalive_time = time()
|
keepalive_time = time()
|
||||||
|
@ -72,7 +72,7 @@ class AprsClient:
|
||||||
self.logger.warning('Read returns zero length string. Failure. Orderly closeout')
|
self.logger.warning('Read returns zero length string. Failure. Orderly closeout')
|
||||||
break
|
break
|
||||||
|
|
||||||
callback(packet_str)
|
callback(packet_str, **kwargs)
|
||||||
except ConnectionError:
|
except ConnectionError:
|
||||||
self.logger.error('ConnectionError', exc_info=True)
|
self.logger.error('ConnectionError', exc_info=True)
|
||||||
except socket.error:
|
except socket.error:
|
||||||
|
|
Ładowanie…
Reference in New Issue