pub trait MessageHandler: Send + Sync {
// Required method
fn handle_message(&self, client_id: ClientId, type_name: &str, data: &[u8]);
}Expand description
Trait for handling incoming messages
Implement this trait to process messages from clients.