(evloop: asyncio.AbstractEventLoop)
| 58 | |
| 59 | @staticmethod |
| 60 | def get_event_loop(evloop: asyncio.AbstractEventLoop) -> asyncio.AbstractEventLoop: |
| 61 | if LoopValidator._is_valid_loop(evloop): |
| 62 | return evloop |
| 63 | return LoopValidator._get_working_loop() |
| 64 | |
| 65 | @staticmethod |
| 66 | def close_loop() -> None: |