broadcast()
Signals the condition, waking up all threads waiting on it.
Declaration
func broadcast()Discussion
If no threads are waiting on the condition, this method does nothing.
To avoid race conditions, you should invoke this method only while the receiver is locked.