java.nonstandard.sync.condition

The condition module provides a primitive for synchronized condition checking.

Public Imports

tango.core.sync.Condition
public import tango.core.sync.Condition;
java.nonstandard.sync.exception
public import java.nonstandard.sync.exception;
java.nonstandard.sync.mutex
public import java.nonstandard.sync.mutex;
core.time
public import core.time;

Members

Classes

Condition
class Condition

This class represents a condition variable as conceived by C.A.R. Hoare. As per Mesa type monitors however, "signal" has been replaced with "notify" to indicate that control is not transferred to the waiter when a notification is sent.

Functions

testNotify
void testNotify()

///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////

testNotifyAll
void testNotifyAll()

///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////

testWaitTimeout
void testWaitTimeout()

///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////

Meta

Authors

Sean Kelly