Module darkfi::system::condvar

source ·
Expand description

Condition variable which allows a task to block until woken up

Structs§

  • Condition variables allow you to block a task while waiting for an event to occur. Condition variables are typically associated with a boolean predicate (a condition).
  • Awaitable futures object returned by condvar.wait()