Struct maitake::sync::wait_map::Wait

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§

§

impl<'map, 'wait, K, V> Wait<'map, K, V>
where K: PartialEq,

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<'a, K, V> Debug for Wait<'a, K, V>
where K: Debug + PartialEq, V: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'a, K, V> Drop for Wait<'a, K, V>
where K: PartialEq,

§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl<K, V> Future for Wait<'_, K, V>
where K: PartialEq,

§

type Output = Result<V, WaitError>

The type of value produced on completion.
§

fn poll( self: Pin<&mut Wait<'_, K, V>>, cx: &mut Context<'_> ) -> Poll<<Wait<'_, K, V> as Future>::Output>

Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
§

impl<'pin, 'a, K, V> Unpin for Wait<'a, K, V>
where K: PartialEq, __Wait<'pin, 'a, K, V>: Unpin,

Auto Trait Implementations§

§

impl<'a, K, V> !RefUnwindSafe for Wait<'a, K, V>

§

impl<'a, K, V> Send for Wait<'a, K, V>
where K: Send, V: Send,

§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F> IntoFuture for F
where F: Future,

§

type Output = <F as Future>::Output

The output that the future will produce on completion.
§

type IntoFuture = F

Which kind of future are we turning this into?
source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more