Interface AwaitableRunnable
-
- All Superinterfaces:
Runnable
- All Known Implementing Classes:
AwaitableNoOpRunnable,PausingAwaitableNoOpRunnable
public interface AwaitableRunnable extends Runnable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidawaitTaskCompletion()booleanawaitTaskCompletion(long amount, TimeUnit unit)booleanhasTaskFinished()
-
-
-
Method Detail
-
hasTaskFinished
boolean hasTaskFinished()
-
awaitTaskCompletion
void awaitTaskCompletion() throws InterruptedException- Throws:
InterruptedException
-
awaitTaskCompletion
boolean awaitTaskCompletion(long amount, TimeUnit unit) throws InterruptedException- Throws:
InterruptedException
-
-