MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / connect

Method connect

plugins/streamcontroller-aethersdr/tci_client.py:43–50  ·  view source on GitHub ↗
(self, host="localhost", port=50001)

Source from the content-addressed store, hash-verified

41 self._reconnect = True
42
43 def connect(self, host="localhost", port=50001):
44 self._host = host
45 self._port = port
46 self._reconnect = True
47 if self._thread and self._thread.is_alive():
48 return
49 self._thread = threading.Thread(target=self._run, daemon=True)
50 self._thread.start()
51
52 def disconnect(self):
53 self._reconnect = False

Callers 4

__init__Method · 0.45
__init__Method · 0.45
get_config_rowsMethod · 0.45
get_config_rowsMethod · 0.45

Calls 1

startMethod · 0.45

Tested by

no test coverage detected