tf-rust-engineio 0.8.0

An Engine.IO client implementation in Rust. Fork of rust_engineio with ACK support and reconnect enhancements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod async_transports;
pub mod transport;

mod async_socket;
#[cfg(feature = "async-callbacks")]
mod callback;
#[cfg(feature = "async")]
pub mod client;
mod generator;

#[cfg(feature = "async")]
pub use client::Client;

#[cfg(feature = "async")]
pub use client::ClientBuilder;