MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / start

Method start

opcua/client/ua_client.py:36–43  ·  view source on GitHub ↗

Start receiving thread. this is called automatically in connect and should not be necessary to call directly

(self)

Source from the content-addressed store, hash-verified

34 self._connection = SecureConnection(security_policy)
35
36 def start(self):
37 """
38 Start receiving thread.
39 this is called automatically in connect and
40 should not be necessary to call directly
41 """
42 self._thread = Thread(target=self._run)
43 self._thread.start()
44
45 def _send_request(self, request, callback=None, timeout=1000, message_type=ua.MessageType.SecureMessage):
46 """

Callers 2

connect_socketMethod · 0.95
create_sessionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected