futures_codec 0.2.0

Utilities for encoding and decoding frames using `async/await`
Documentation

Utilities for encoding and decoding frames using async/await.

Contains adapters to go from streams of bytes, AsyncRead and AsyncWrite, to framed streams implementing Sink and Stream. Framed streams are also known as transports.

# #![feature(async_await, await_macro)]
# use futures::{SinkExt, TryStreamExt};
# use std::io::Cursor;
use bytes::Bytes;
use futures_codec::{BytesCodec, Framed};

async move {
# let mut buf = vec![];
# let stream = Cursor::new(&mut buf);
let mut framed = Framed::new(stream, BytesCodec {});

let msg = Bytes::from("Hello World!");
await!(framed.send(msg)).unwrap();

while let Some(msg) = await!(framed.try_next()).unwrap() {
println!("{:?}", msg);
}
};