boardwalk 0.2.0

Hypermedia server framework with reverse-tunnel federation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Event bus + multiplex WebSocket sub-protocol types.

#![forbid(unsafe_code)]

mod bus;
mod topic;
mod wire;

pub use bus::{EventBus, SubscribeOpts, Subscription, SubscriptionId};
pub use topic::{Segment, TopicParseError, TopicPattern};
pub use wire::{Event, InboundMessage, OutboundMessage, SubscriptionRef};