Record an error for session stats.
(&self)
| 285 | |
| 286 | /// Record an error for session stats. |
| 287 | pub fn record_error(&self) { |
| 288 | self.error_count.fetch_add(1, Ordering::Relaxed); |
| 289 | } |
| 290 | |
| 291 | /// Get total events processed. |
| 292 | pub fn total_events_count(&self) -> u64 { |
no outgoing calls