(&self, event: AgentEvent)
| 113 | } |
| 114 | |
| 115 | async fn forward_event(&self, event: AgentEvent) { |
| 116 | if let Some(tx) = self.event_tx { |
| 117 | tx.send(event).await.ok(); |
| 118 | } |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | fn action_taken(action: TimeoutAction) -> &'static str { |
no test coverage detected