pub trait CommBridge: Send + Sync {
// Provided methods
fn broadcast_state(&self, _state: &str) -> Result<(), String> { ... }
fn receive_state(&self) -> Option<String> { ... }
}Expand description
Communication bridge for AgenticComm integration.