pub struct Wait<'a, K, V>where
K: PartialEq,{ /* private fields */ }
Expand description
Future returned from WaitMap::wait()
.
This future is fused, so once it has completed, any future calls to poll
will immediately return Poll::Ready
.
Implementations§
Source§impl<'map, 'wait, K, V> Wait<'map, K, V>where
K: PartialEq,
impl<'map, 'wait, K, V> Wait<'map, K, V>where
K: PartialEq,
Sourcepub fn enqueue(
self: Pin<&'wait mut Wait<'map, K, V>>,
) -> EnqueueWait<'wait, 'map, K, V> ⓘ
pub fn enqueue( self: Pin<&'wait mut Wait<'map, K, V>>, ) -> EnqueueWait<'wait, 'map, K, V> ⓘ
Returns a future that completes when the Wait
item has been
added to the WaitMap
, and is ready to receive data
This is useful for ensuring that a receiver is ready before sending a message that will elicit the expected response.
§Example
ⓘ
use std::sync::Arc;
use maitake::scheduler;
use maitake_sync::wait_map::{WaitMap, WakeOutcome};
use futures_util::pin_mut;
let scheduler = Scheduler::new();
let q = Arc::new(WaitMap::new());
let q2 = q.clone();
scheduler.spawn(async move {
let wait = q2.wait(0);
// At this point, we have created the future, but it has not yet
// been added to the queue. We could immediately await 'wait',
// but then we would be unable to progress further. We must
// first pin the `wait` future, to ensure that it does not move
// until it has been completed.
pin_mut!(wait);
wait.as_mut().enqueue().await.unwrap();
// We now know the waiter has been enqueued, at this point we could
// send a message that will cause key == 0 to be returned, without
// worrying about racing with the expected response, e.g:
//
// sender.send_with_id(0, SomeMessage).await?;
//
let val = wait.await.unwrap();
assert_eq!(val, 10);
});
assert!(matches!(q.wake(&0, 100), WakeOutcome::NoMatch(_)));
let tick = scheduler.tick();
assert!(matches!(q.wake(&0, 100), WakeOutcome::Woke));
Trait Implementations§
impl<'pin, 'a, K, V> Unpin for Wait<'a, K, V>
Auto Trait Implementations§
impl<'a, K, V> !Freeze for Wait<'a, K, V>
impl<'a, K, V> !RefUnwindSafe for Wait<'a, K, V>
impl<'a, K, V> Send for Wait<'a, K, V>
impl<'a, K, V> !Sync for Wait<'a, K, V>
impl<'a, K, V> !UnwindSafe for Wait<'a, K, V>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more