(self, stream_id: str)
| 426 | return job |
| 427 | |
| 428 | def get(self, stream_id: str) -> StreamingJob | None: |
| 429 | with self._lock: |
| 430 | return self._jobs.get(stream_id) |
| 431 | |
| 432 | def close(self, stream_id: str) -> StreamingJob | None: |
| 433 | with self._lock: |
no outgoing calls
no test coverage detected