mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Add task::yield_to() helper (#375)
This commit is contained in:
parent
0255df9f16
commit
e3dd4b3908
4 changed files with 44 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [2.1.0] - 2024-06-26
|
||||||
|
|
||||||
|
* Add task::yield_to() helper
|
||||||
|
|
||||||
## [2.0.1] - 2024-05-28
|
## [2.0.1] - 2024-05-28
|
||||||
|
|
||||||
* Re-enable BufferService
|
* Re-enable BufferService
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-util"
|
name = "ntex-util"
|
||||||
version = "2.0.1"
|
version = "2.1.0"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for ntex framework"
|
description = "Utilities for ntex framework"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
@ -16,7 +16,7 @@ name = "ntex_util"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex-service = "3.0"
|
ntex-service = "3"
|
||||||
ntex-rt = "0.4"
|
ntex-rt = "0.4"
|
||||||
bitflags = "2"
|
bitflags = "2"
|
||||||
fxhash = "0.2"
|
fxhash = "0.2"
|
||||||
|
|
|
@ -69,3 +69,40 @@ impl fmt::Debug for LocalWaker {
|
||||||
write!(f, "LocalWaker")
|
write!(f, "LocalWaker")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[doc(hidden)]
|
||||||
|
/// Yields execution back to the current runtime.
|
||||||
|
pub async fn yield_to() {
|
||||||
|
use std::{future::Future, pin::Pin, task::Context, task::Poll};
|
||||||
|
|
||||||
|
struct Yield {
|
||||||
|
completed: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Future for Yield {
|
||||||
|
type Output = ();
|
||||||
|
|
||||||
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
|
||||||
|
if self.completed {
|
||||||
|
return Poll::Ready(());
|
||||||
|
}
|
||||||
|
|
||||||
|
self.completed = true;
|
||||||
|
cx.waker().wake_by_ref();
|
||||||
|
|
||||||
|
Poll::Pending
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Yield { completed: false }.await;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[ntex_macros::rt_test2]
|
||||||
|
async fn yield_test() {
|
||||||
|
yield_to().await;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ ntex-http = "0.1.12"
|
||||||
ntex-router = "0.5.3"
|
ntex-router = "0.5.3"
|
||||||
ntex-service = "3.0"
|
ntex-service = "3.0"
|
||||||
ntex-macros = "0.1.3"
|
ntex-macros = "0.1.3"
|
||||||
ntex-util = "2.0"
|
ntex-util = "2"
|
||||||
ntex-bytes = "0.1.27"
|
ntex-bytes = "0.1.27"
|
||||||
ntex-server = "2.0"
|
ntex-server = "2.0"
|
||||||
ntex-h2 = "1.0"
|
ntex-h2 = "1.0"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue