mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
add async .read_ready() method
This commit is contained in:
parent
32c80dfa12
commit
52d6c6580e
1 changed files with 6 additions and 0 deletions
|
@ -417,6 +417,12 @@ impl<F> Io<F> {
|
|||
poll_fn(|cx| self.poll_recv(codec, cx)).await
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Wake read task and instruct to read more data
|
||||
pub async fn read_ready(&self) -> Option<io::Result<()>> {
|
||||
poll_fn(|cx| self.poll_read_ready(cx)).await
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Pause read task
|
||||
pub fn pause(&self) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue