nexus-async-net 0.5.0

Async WebSocket adapter for nexus-net. Tokio-compatible, zero-copy, SIMD-accelerated.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Async HTTP REST client -- nexus-async-rt adapter for nexus-net.
//!
//! Same [`RequestWriter`](nexus_net::rest::RequestWriter), same
//! [`ResponseReader`](nexus_net::http::ResponseReader), same zero-alloc
//! protocol layer. The only difference is `.await` on socket I/O backed
//! by nexus-async-rt instead of tokio.

mod connection;
mod pool;

pub use crate::maybe_tls::MaybeTls;
pub use connection::{AsyncHttpConnection, AsyncHttpConnectionBuilder};
pub use pool::{ClientPool, ClientPoolBuilder, ClientSlot};