rsocket_rust 0.6.0

rsocket-rust is an implementation of the RSocket protocol in Rust.
Documentation
1
2
3
4
5
6
7
8
9
mod client;
mod factory;
mod server;

pub(crate) const CHANNEL_SIZE: usize = 32;

pub use client::{Client, ClientBuilder};
pub use factory::RSocketFactory;
pub use server::ServerBuilder;