Stop write task if io is closed (#416)

This commit is contained in:
Nikolay Kim 2024-09-07 10:04:08 +05:00 committed by GitHub
parent 3edb54ffdf
commit db6d3a6e4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 59 additions and 25 deletions

View file

@ -296,6 +296,17 @@ impl WriteContext {
self.0.filter().poll_write_ready(cx)
}
#[inline]
/// Check if io is closed
pub fn poll_close(&self, cx: &mut Context<'_>) -> Poll<()> {
if self.0.is_io_closed() {
Poll::Ready(())
} else {
self.0 .0.write_task.register(cx.waker());
Poll::Pending
}
}
/// Get write buffer
pub fn with_buf<F>(&self, f: F) -> Poll<io::Result<()>>
where