mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27: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
|
@ -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