retty 0.29.0

Retty — an asynchronous Rust networking framework that makes it easy to build protocols, application clients/servers.
Documentation
1
2
3
4
5
6
7
8
9
10
//! The handler and pipeline APIs which are asynchronous and event-driven abstraction of various transports
pub(crate) mod handler;
pub(crate) mod handler_internal;
pub(crate) mod pipeline;
pub(crate) mod pipeline_internal;

pub use self::{
    handler::{Context, Handler},
    pipeline::{InboundPipeline, OutboundPipeline, Pipeline},
};