1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! # IronSBE Client //! //! Client-side engine for SBE messaging. //! //! This crate provides: //! - Client builder with configuration options //! - Automatic reconnection logic //! - Async/sync bridging for message handling pub mod builder; pub mod error; pub mod reconnect; pub mod session; pub use builder::{Client, ClientBuilder, ClientCommand, ClientEvent, ClientHandle}; pub use error::ClientError;