mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Stop write task if io is closed (#416)
This commit is contained in:
parent
3edb54ffdf
commit
db6d3a6e4c
10 changed files with 59 additions and 25 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue