public interface Future<T>
| Modifier and Type | Method and Description |
|---|---|
T |
get() |
T |
get(long timeoutMs) |
T |
get(long timeoutMs,
long sleepingIntervalMs) |
boolean |
isDone() |
boolean |
isSuccessful() |
T get()
T get(long timeoutMs) throws TimeoutException
TimeoutExceptionT get(long timeoutMs, long sleepingIntervalMs) throws TimeoutException
TimeoutExceptionboolean isDone()
boolean isSuccessful()
Copyright © 2014–2015 Nikolche Mihajlovski and contributors. All rights reserved.