ManualEvent.wait - multiple declarations
Function ManualEvent.wait
Acquires ownership and waits until the signal is emitted.
abstract void wait();
Throws
May throw an InterruptException
if the task gets interrupted
using Task
.
Function ManualEvent.wait
Acquires ownership and waits until the emit count differs from the given one.
abstract int wait
(
int reference_emit_count
);
Throws
May throw an InterruptException
if the task gets interrupted
using Task
.
Function ManualEvent.wait
Acquires ownership and waits until the emit count differs from the given one or until a timeout is reached.
abstract int wait
(
core .time .Duration timeout,
int reference_emit_count
);
Throws
May throw an InterruptException
if the task gets interrupted
using Task
.