(&self, event: &AgentEvent, run_id: &str, session_id: &str)
| 877 | } |
| 878 | |
| 879 | async fn record_agent_event(&self, event: &AgentEvent, run_id: &str, session_id: &str) { |
| 880 | self.publish_agent_event(event, run_id, session_id).await; |
| 881 | } |
| 882 | |
| 883 | async fn record_run_cancelled(&self, run_id: &str, session_id: &str, reason: Option<&str>) { |
| 884 | self.publish_run_cancelled(run_id, session_id, reason).await; |
nothing calls this directly
no test coverage detected