(self)
| 91 | await maybe_deferred_to_future(self.closing) |
| 92 | |
| 93 | def _maybe_fire_closing(self) -> None: |
| 94 | if self.closing is not None and not self.inprogress: |
| 95 | if self.nextcall: |
| 96 | self.nextcall.cancel() |
| 97 | if self.heartbeat.running: |
| 98 | self.heartbeat.stop() |
| 99 | self.closing.callback(None) |
| 100 | |
| 101 | |
| 102 | class ExecutionEngine: |
no test coverage detected