Returns a Condition analog that yields when wait or notify is called.
Bug: For the default implementation, notifyAll will behave like notify.
A Mutex to use for locking if the condition needs to be waited on or notified from multiple Threads. If null, no Mutex will be used and it is assumed that the Condition is only waited on/notified from one Thread.
See Implementation
Returns a Condition analog that yields when wait or notify is called.
Bug: For the default implementation, notifyAll will behave like notify.