tokio-line icon indicating copy to clipboard operation
tokio-line copied to clipboard

Line protocol for Tokio

Results 4 tokio-line issues
Sort by recently updated
recently updated
newest added

It seems that return Box::new(future::done(Ok(req))) doesn't close the connection. My client side: ``` let mut socket = TcpStream::connect(addr).unwrap(); socket.write(msg.as_bytes()); let mut result = String::new(); println!("waitiing for server to return"); let...

Hi there, since I made the code changes already, I might as well open a pre-emptive PR on tokio-line. This PR modifies the `multiplexed` example for the breaking changes introduced...

It would be great to have a sample that shows how to compose protocols.

Preamble: Carl, this is a followup request to our IRC discussion yesterday. I tried to implement this example below and failed and I think this would be a useful example...