(self_event, other_event)
| 542 | # run_in_executor works with await and not just gen.coroutine |
| 543 | # (simply passing the underlying concurrent future would do that). |
| 544 | async def async_wrapper(self_event, other_event): |
| 545 | return await IOLoop.current().run_in_executor( |
| 546 | None, sync_func, self_event, other_event |
| 547 | ) |
| 548 | |
| 549 | res = yield [async_wrapper(event1, event2), async_wrapper(event2, event1)] |
| 550 |
nothing calls this directly
no test coverage detected