Start the network thread.
(self)
| 746 | NetworkThread.protos = {} |
| 747 | |
| 748 | def run(self): |
| 749 | """Start the network thread.""" |
| 750 | NetworkThread.network_event_loop = asyncio.SelectorEventLoop() if platform.system() == "Windows" else asyncio.new_event_loop() |
| 751 | self.network_event_loop.run_forever() |
| 752 | |
| 753 | def close(self, *, timeout): |
| 754 | """Close the connections and network event loop.""" |
no outgoing calls