optirs-tpu 0.3.2

OptiRS TPU coordination and pod management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Events Module

use std::collections::HashMap;

pub mod handlers;
pub mod queue;

// Re-export main types explicitly to avoid ambiguous glob re-exports
// Submodules with conflicts (monitoring, performance, storage) can be accessed via full paths
pub use queue::*;

pub type EventStatistics = HashMap<String, f64>;

#[derive(Debug, Clone, Default)]
pub struct SynchronizationStatistics {
    pub event_stats: EventStatistics,
}