mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
cleanup ntex-io api
This commit is contained in:
parent
a5d734fe47
commit
ed57a964b6
30 changed files with 1670 additions and 1726 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue