cleanup ntex-io api

This commit is contained in:
Nikolay Kim 2021-12-20 18:16:17 +06:00
parent a5d734fe47
commit ed57a964b6
30 changed files with 1670 additions and 1726 deletions

View file

@ -49,17 +49,17 @@ async fn main() -> io::Result<()> {
loop {
match io.next(&codec::BytesCodec).await {
Ok(Some(msg)) => {
Some(Ok(msg)) => {
println!("Got message: {:?}", msg);
io.send(msg.freeze(), &codec::BytesCodec)
.await
.map_err(Either::into_inner)?;
}
Ok(None) => break,
Err(e) => {
Some(Err(e)) => {
println!("Got error: {:?}", e);
break;
}
None => break,
}
}
println!("Client is disconnected");