pub struct Wait<'a> { /* private fields */ }
Expand description
Future returned from WaitQueue::wait()
.
This future is fused, so once it has completed, any future calls to poll
will immediately return Poll::Ready
.
Implementations§
Source§impl Wait<'_>
impl Wait<'_>
Sourcepub fn same_queue(&self, other: &Wait<'_>) -> bool
pub fn same_queue(&self, other: &Wait<'_>) -> bool
Returns true
if self
and other
are waiting on a notification from
the same WaitQueue
.
§Examples
Two Wait
futures waiting on the same WaitQueue
return true
:
use maitake_sync::WaitQueue;
let queue = WaitQueue::new();
let wait1 = queue.wait();
let wait2 = queue.wait();
assert!(wait1.same_queue(&wait2));
assert!(wait2.same_queue(&wait1));
Two Wait
futures waiting on different WaitQueue
s return false
:
use maitake_sync::WaitQueue;
let queue1 = WaitQueue::new();
let queue2 = WaitQueue::new();
let wait1 = queue1.wait();
let wait2 = queue2.wait();
assert!(!wait1.same_queue(&wait2));
assert!(!wait2.same_queue(&wait1));
Sourcepub fn subscribe(self: Pin<&mut Wait<'_>>) -> Poll<Result<(), Closed>>
pub fn subscribe(self: Pin<&mut Wait<'_>>) -> Poll<Result<(), Closed>>
Eagerly subscribe this future to wakeups from WaitQueue::wake()
.
Polling a Wait
future adds that future to the list of waiters that may
receive a wakeup from a WaitQueue
. However, in some cases, it is
desirable to subscribe to wakeups prior to actually waiting for one.
This method should be used when it is necessary to ensure a Wait
future is in the list of waiters before the future is poll
ed for the
first time.
In general, this method is used in cases where a WaitQueue
must
synchronize with some additional state, such as an AtomicBool
or
counter. If a task first checks that state, and then chooses whether or
not to wait on the WaitQueue
based on that state, then a race
condition may occur where the WaitQueue
wakes waiters between when
the task checked the external state and when it first polled its Wait
future to wait on the queue. This method allows registering the Wait
future with the queue prior to checking the external state, without
actually sleeping, so that when the task does wait for the Wait
future
to complete, it will have received any wakeup that was sent between when
the external state was checked and the Wait
future was first polled.
§Returns
This method returns a Poll
<
WaitResult
>
which is Ready
a wakeup was
already received. This method returns Poll::Ready
in the following
cases:
- The
WaitQueue::wake()
method was called between the creation of theWait
and the call to this method. - This is the first call to
subscribe
orpoll
on this future, and theWaitQueue
was holding a stored wakeup from a previous call towake()
. This method consumes the wakeup in that case. - The future has previously been
subscribe
d or polled, and it has since then been marked ready by either consuming a wakeup from theWaitQueue
, or by a call towake()
orwake_all()
that removed it from the list of futures ready to receive wakeups. - The
WaitQueue
has beenclose
d, in which case this method returnsPoll::Ready(Err(Closed))
.
If this method returns Poll::Ready
, any subsequent poll
s of this
Wait
future will also immediately return Poll::Ready
.
If the Wait
future subscribed to wakeups from the queue, and
has not been woken, this method returns Poll::Pending
.