mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add LocalWaker::with() helper
This commit is contained in:
parent
e9f3541726
commit
e5bf02f2e6
3 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [2.2.0] - 2024-07-30
|
||||||
|
|
||||||
|
* Add LocalWaker::with() helper
|
||||||
|
|
||||||
## [2.1.0] - 2024-06-26
|
## [2.1.0] - 2024-06-26
|
||||||
|
|
||||||
* Add task::yield_to() helper
|
* Add task::yield_to() helper
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-util"
|
name = "ntex-util"
|
||||||
version = "2.1.0"
|
version = "2.2.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"]
|
||||||
|
|
|
@ -32,6 +32,14 @@ impl LocalWaker {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create an `LocalWaker`.
|
||||||
|
pub fn with(waker: Option<Waker>) -> Self {
|
||||||
|
LocalWaker {
|
||||||
|
waker: Cell::new(waker),
|
||||||
|
_t: PhantomData,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Registers the waker to be notified on calls to `wake`.
|
/// Registers the waker to be notified on calls to `wake`.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue