mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Allow to wake up write io task
This commit is contained in:
parent
5ce0700f4a
commit
a6cc3e3721
3 changed files with 15 additions and 7 deletions
|
@ -1,5 +1,7 @@
|
|||
# Changes
|
||||
|
||||
* Allow to wake up write io task
|
||||
|
||||
## [0.2.0-b.7] - 2021-01-25
|
||||
|
||||
* Fix error handling for framed disaptcher
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.2.0-b.8"
|
||||
version = "0.2.0-b.9"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -159,6 +159,12 @@ impl State {
|
|||
self.0.flags.get().contains(Flags::IO_STOP)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Check if write buff is full
|
||||
pub fn is_write_buf_full(&self) -> bool {
|
||||
self.0.write_buf.borrow().len() >= HW
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Check if read buffer has new data
|
||||
pub fn is_read_ready(&self) -> bool {
|
||||
|
@ -320,6 +326,12 @@ impl State {
|
|||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Wake write io task
|
||||
pub fn dsp_restart_write_task(&self) {
|
||||
self.0.write_task.wake();
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Wake read io task if it is not ready
|
||||
pub fn dsp_read_more_data(&self, waker: &Waker) {
|
||||
|
@ -330,12 +342,6 @@ impl State {
|
|||
self.0.dispatch_task.register(waker);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Check if write buff is full
|
||||
pub fn is_write_buf_full(&self) -> bool {
|
||||
self.0.write_buf.borrow().len() >= HW
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Wait until write task flushes data to socket
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue