(method, size, delay)
| 130 | |
| 131 | |
| 132 | async def main(method, size, delay): |
| 133 | async with serve( |
| 134 | functools.partial(handler, method=method), |
| 135 | "localhost", |
| 136 | 8765, |
| 137 | compression=None, |
| 138 | ping_timeout=None, |
| 139 | ): |
| 140 | await broadcast_messages(method, size, delay) |
| 141 | |
| 142 | |
| 143 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…