Cancel all pending HITL confirmations for this session.
(&self, py: Python<'_>)
| 2433 | |
| 2434 | /// Cancel all pending HITL confirmations for this session. |
| 2435 | fn cancel_confirmations(&self, py: Python<'_>) -> usize { |
| 2436 | let session = self.inner.clone(); |
| 2437 | py.allow_threads(move || get_runtime().block_on(session.cancel_confirmations())) |
| 2438 | } |
| 2439 | |
| 2440 | /// Get optional queue statistics. |
| 2441 | /// |
no test coverage detected