(self)
| 2063 | return self._solve_inflight > 0 |
| 2064 | |
| 2065 | def note_idle(self): |
| 2066 | if self._solve_inflight <= 0: |
| 2067 | self._last_idle_since = time.monotonic() |
| 2068 | |
| 2069 | def idle_seconds(self) -> float: |
| 2070 | if self.is_busy(): |
no outgoing calls
no test coverage detected