1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! JMAP Event Source push channel (RFC 8620 §7.2 & §7.2.1). //! //! A streaming GET against //! [`JmapSession::event_source_url`](crate::rfc8620::JmapSession::event_source_url) //! yields W3C SSE frames carrying [`JmapStateChange`] payloads. pub mod subscribe; mod types; mod utils; #[doc(inline)] pub use types::*; #[doc(inline)] pub use utils::*;