(self)
| 1363 | self.send_sync("status", { "status": self.get_queue_info() }) |
| 1364 | |
| 1365 | async def publish_loop(self): |
| 1366 | while True: |
| 1367 | msg = await self.messages.get() |
| 1368 | await self.send(*msg) |
| 1369 | |
| 1370 | async def start(self, address, port, verbose=True, call_on_start=None): |
| 1371 | await self.start_multi_address([(address, port)], call_on_start=call_on_start) |