mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add LocalWaker::with() helper (#387)
This commit is contained in:
parent
e9f3541726
commit
d81e089059
3 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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`.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue