Start receiving thread. this is called automatically in connect and should not be necessary to call directly
(self)
| 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 | """ |
no outgoing calls
no test coverage detected