lightyear_sync 0.27.0

IO primitives for the lightyear networking library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module to handle sending ping/pong messages and compute connection statistics (rtt, jitter, etc.)

pub mod manager;

pub mod message;

pub mod diagnostics;
pub mod estimator;
pub mod plugin;
pub mod store;

/// Default channel to send pings. This is a Sequenced Unreliable channel, because
/// there is no point in getting older pings.
pub struct PingChannel;