(self, sample_id: str)
| 73 | } |
| 74 | |
| 75 | def exists(self, sample_id: str) -> bool: |
| 76 | with self._lock: |
| 77 | return sample_id in self._samples |
| 78 | |
| 79 | def cancel(self, sample_id: str) -> bool: |
| 80 | """Flag a sample as cancelled. Returns False if the id is unknown.""" |
no outgoing calls