rifts 0.3.10

Rift Realtime Protocol / 1.0 — server + client implementation
Documentation
1
2
3
4
5
6
7
8
//! Flow control module — backpressure management (Rift spec section 18).
//!
//! The [`BackpressureController`] monitors per-connection outbound queue depth and
//! selects an appropriate mitigation action when the high-water mark is reached.

pub mod backpressure;

pub use backpressure::{BackpressureAction, BackpressureController, BackpressureStrategy};