(&self, run_id: String, session_id: String)
| 127 | } |
| 128 | |
| 129 | fn run_handle(&self, run_id: String, session_id: String) -> crate::run::RunHandle { |
| 130 | crate::run::RunHandle::new( |
| 131 | run_id, |
| 132 | session_id, |
| 133 | Arc::clone(&self.run_store), |
| 134 | Arc::clone(&self.cancel_token), |
| 135 | Arc::clone(&self.current_run_id), |
| 136 | self.hook_executor.clone(), |
| 137 | ) |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | pub(super) struct BlockingRunLifecycle { |
no test coverage detected