reactive-messaging 0.4.1

Reactive client/server communications, focused on high performance
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Re-exports of types -- out of the internal directory and module structure -- useful for users of this crate

pub use crate::config::*;
pub use crate::types::*;
pub use crate::socket_services::{
    types::*,
    socket_server::*,
    socket_client::*,
};
pub use crate::socket_connection::{
    connection::*,
    connection_provider::*,
    peer::Peer,
};
pub use crate::serde::*;

// from `reactive-mutiny`:
pub use reactive_mutiny::prelude::advanced::*;