public interface SharedCondition
| Modifier and Type | Method and Description |
|---|---|
void |
await()
Wait for another thread to signal this condition.
|
void |
signal()
Wake up one of the waiting threads
|
void |
signalAll()
Wake up all of the waiting threads
|
void await()
throws InterruptedException
InterruptedException - if the waiting thread on the master was interrupted.void signal()
void signalAll()
Copyright © 2010-2015 Pivotal Software, Inc. All rights reserved.