axum-cometd 0.9.3

Framework for CometD server creation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod channel;
mod client_id;
mod client_receiver;
mod client_sender;
mod cookie_id;
mod id;
mod subscription_id;

/// Contains errors.
pub mod error;
mod events;
/// Contains cometd Message struct.
pub mod messages;

pub use {channel::*, client_id::*, events::*};
pub(crate) use {client_receiver::*, client_sender::*, cookie_id::*, id::*, subscription_id::*};