mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Optimize io read task
This commit is contained in:
parent
f2cd676ac3
commit
2a19b7f995
4 changed files with 19 additions and 15 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.3.1] - 2023-11-12
|
||||
|
||||
* Optimize io read task
|
||||
|
||||
## [0.3.0] - 2023-06-22
|
||||
|
||||
* Release v0.3.0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-async-std"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "async-std intergration for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -16,9 +16,9 @@ name = "ntex_async_std"
|
|||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.19"
|
||||
ntex-io = "0.3.0"
|
||||
ntex-util = "0.3.0"
|
||||
ntex-bytes = "0.1.21"
|
||||
ntex-io = "0.3.6"
|
||||
ntex-util = "0.3.4"
|
||||
async-oneshot = "0.5.0"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
|
|
|
@ -50,9 +50,9 @@ impl Future for ReadTask {
|
|||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||
let this = self.as_ref();
|
||||
|
||||
this.state.with_buf(|buf, hw, lw| {
|
||||
match ready!(this.state.poll_ready(cx)) {
|
||||
ReadStatus::Ready => {
|
||||
match ready!(this.state.poll_ready(cx)) {
|
||||
ReadStatus::Ready => {
|
||||
this.state.with_buf(|buf, hw, lw| {
|
||||
// read data from socket
|
||||
let mut io = self.io.borrow_mut();
|
||||
loop {
|
||||
|
@ -80,13 +80,13 @@ impl Future for ReadTask {
|
|||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
ReadStatus::Terminate => {
|
||||
log::trace!("read task is instructed to shutdown");
|
||||
Poll::Ready(Ok(()))
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
ReadStatus::Terminate => {
|
||||
log::trace!("read task is instructed to shutdown");
|
||||
Poll::Ready(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -60,9 +60,9 @@ ntex-h2 = "0.4.4"
|
|||
ntex-rt = "0.4.10"
|
||||
ntex-io = "0.3.6"
|
||||
ntex-tls = "0.3.2"
|
||||
ntex-tokio = { version = "0.3.0", optional = true }
|
||||
ntex-tokio = { version = "0.3.1", optional = true }
|
||||
ntex-glommio = { version = "0.3.0", optional = true }
|
||||
ntex-async-std = { version = "0.3.0", optional = true }
|
||||
ntex-async-std = { version = "0.3.1", optional = true }
|
||||
|
||||
async-oneshot = "0.5"
|
||||
async-channel = "2.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue