Start the network thread.
(self)
| 585 | NetworkThread.network_event_loop = asyncio.new_event_loop() |
| 586 | |
| 587 | def run(self): |
| 588 | """Start the network thread.""" |
| 589 | self.network_event_loop.run_forever() |
| 590 | |
| 591 | def close(self, timeout=10): |
| 592 | """Close the connections and network event loop.""" |
no outgoing calls