Add LocalWaker::with() helper (#387)

This commit is contained in:
Nikolay Kim 2024-07-30 12:40:51 +02:00 committed by GitHub
parent e9f3541726
commit d81e089059
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 1 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-util"
version = "2.1.0"
version = "2.2.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -32,6 +32,14 @@ impl LocalWaker {
}
}
/// Create an `LocalWaker`.
pub fn with(waker: Option<Waker>) -> Self {
LocalWaker {
waker: Cell::new(waker),
_t: PhantomData,
}
}
#[inline]
/// Registers the waker to be notified on calls to `wake`.
///