actr-hyper 0.2.1

Hyper — Actor platform infrastructure: sandbox, transport, scheduler, WASM engine, signing, AIS bootstrap, persistence & crypto primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Inbound Layer 3: Inbound dispatch layer
//!
//! Responsible for inbound message routing and dispatching:
//! - DataStreamRegistry: LatencyFirst type message registration and callback (streaming data chunks)
//! - MediaFrameRegistry: MediaTrack type message registration and callback (media streams)

mod data_stream_registry;
mod media_frame_registry;

pub(crate) use data_stream_registry::DataStreamRegistry;
pub use media_frame_registry::MediaFrameRegistry;

// MediaSample and MediaType are now re-exported from actr-framework, not here