Increment event counter and update activity
(&self)
| 708 | |
| 709 | /// Increment event counter and update activity |
| 710 | fn record_event(&self) { |
| 711 | self.total_events.fetch_add(1, Ordering::Relaxed); |
| 712 | self.update_activity(); |
| 713 | } |
| 714 | |
| 715 | fn record_runtime_agent_event(&self, event: &AgentEvent, run_id: &str) { |
| 716 | if matches!(event, AgentEvent::Error { .. }) { |