(self)
| 395 | raise AssertionError("abstract: subclasses must override.") |
| 396 | |
| 397 | def increment_suspend_time(self): |
| 398 | with self._lock: |
| 399 | self._suspend_time_request = self._next_request_time() |
| 400 | |
| 401 | def on_pause(self): |
| 402 | # Upon a pause, we should force sending new suspend notifications |
no outgoing calls