add async .read_ready() method

This commit is contained in:
Nikolay Kim 2021-12-21 20:20:49 +06:00
parent 32c80dfa12
commit 52d6c6580e

View file

@ -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) {