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 void
awaitTaskCompletion()
boolean
awaitTaskCompletion(long amount, TimeUnit unit)
boolean
hasTaskFinished()
-
-
-
Method Detail
-
hasTaskFinished
boolean hasTaskFinished()
-
awaitTaskCompletion
void awaitTaskCompletion() throws InterruptedException
- Throws:
InterruptedException
-
awaitTaskCompletion
boolean awaitTaskCompletion(long amount, TimeUnit unit) throws InterruptedException
- Throws:
InterruptedException
-
-