fix wake write method dsp_restart_write_task

This commit is contained in:
Nikolay Kim 2021-02-02 13:22:31 +06:00
parent 5f7b2b0eae
commit 00df8452f3
3 changed files with 6 additions and 13 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.0-b.11] - 2021-02-02
* framed: fix wake write method dsp_restart_write_task
## [0.2.0-b.10] - 2021-01-28
* framed: Allow to wake up write io task

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.2.0-b.10"
version = "0.2.0-b.11"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"

View file

@ -349,18 +349,7 @@ impl State {
#[inline]
/// Wake write io task
pub fn dsp_restart_write_task(&self) {
// if write buffer is empty then write task is asleep
// otherwise write task is active
if self.0.write_buf.borrow().is_empty() {
self.0.write_task.wake();
}
}
#[doc(hidden)]
#[inline]
/// Wake write io task
pub fn dsp_flush_write_data(&self, _: &Waker) {
self.dsp_restart_write_task()
self.0.write_task.wake();
}
#[inline]