From e5bf02f2e6127f8ac8af3aa5d8cc3a17841f1ef4 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Tue, 30 Jul 2024 12:34:15 +0200 Subject: [PATCH] Add LocalWaker::with() helper --- ntex-util/CHANGES.md | 4 ++++ ntex-util/Cargo.toml | 2 +- ntex-util/src/task.rs | 8 ++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ntex-util/CHANGES.md b/ntex-util/CHANGES.md index 3b1d01b2..83625407 100644 --- a/ntex-util/CHANGES.md +++ b/ntex-util/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [2.2.0] - 2024-07-30 + +* Add LocalWaker::with() helper + ## [2.1.0] - 2024-06-26 * Add task::yield_to() helper diff --git a/ntex-util/Cargo.toml b/ntex-util/Cargo.toml index b99dac3f..01f51471 100644 --- a/ntex-util/Cargo.toml +++ b/ntex-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-util" -version = "2.1.0" +version = "2.2.0" authors = ["ntex contributors "] description = "Utilities for ntex framework" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-util/src/task.rs b/ntex-util/src/task.rs index 16f822ca..0dc49640 100644 --- a/ntex-util/src/task.rs +++ b/ntex-util/src/task.rs @@ -32,6 +32,14 @@ impl LocalWaker { } } + /// Create an `LocalWaker`. + pub fn with(waker: Option) -> Self { + LocalWaker { + waker: Cell::new(waker), + _t: PhantomData, + } + } + #[inline] /// Registers the waker to be notified on calls to `wake`. ///