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
|
@ -2,7 +2,7 @@ use std::{io, task::Context, task::Poll};
|
|||
|
||||
use ntex_bytes::{BytesMut, PoolRef};
|
||||
|
||||
use super::{state::Flags, IoRef, WriteReadiness};
|
||||
use super::{io::Flags, IoRef, WriteReadiness};
|
||||
|
||||
pub struct ReadContext(pub(super) IoRef);
|
||||
|
||||
|
@ -45,6 +45,7 @@ impl ReadContext {
|
|||
flags.insert(Flags::RD_READY);
|
||||
self.0.set_flags(flags);
|
||||
self.0 .0.dispatch_task.wake();
|
||||
log::trace!("new {} bytes available, wakeup dispatcher", new_bytes);
|
||||
}
|
||||
|
||||
self.0.filter().release_read_buf(buf, new_bytes)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue