(self)
| 129 | self._on_task_command(self) |
| 130 | |
| 131 | async def next_client_event(self): |
| 132 | # 函数开始不需要判断 self.closed() |
| 133 | # 如果会话关闭,对 get_current_session().next_client_event() 的调用会抛出SessionClosedException |
| 134 | return await WebIOFuture() |
| 135 | |
| 136 | def send_client_event(self, event): |
| 137 | """向会话发送来自用户浏览器的事件️ |
no test coverage detected