boolean |
AbstractSshFuture.await(long timeoutMillis,
CancelOption... options) |
|
default boolean |
WaitableFuture.await(long timeout,
TimeUnit unit,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout.
|
boolean |
WaitableFuture.await(long timeoutMillis,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout.
|
default boolean |
WaitableFuture.await(Duration timeout,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout.
|
default boolean |
WaitableFuture.await(CancelOption... options) |
|
protected abstract Object |
AbstractSshFuture.await0(long timeoutMillis,
boolean interruptable,
CancelOption... options) |
Wait for the Future to be ready.
|
protected Object |
DefaultSshFuture.await0(long timeoutMillis,
boolean interruptable,
CancelOption... options) |
|
boolean |
AbstractSshFuture.awaitUninterruptibly(long timeoutMillis,
CancelOption... options) |
|
default boolean |
WaitableFuture.awaitUninterruptibly(long timeout,
TimeUnit unit,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout uninterruptibly.
|
boolean |
WaitableFuture.awaitUninterruptibly(long timeoutMillis,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout uninterruptibly.
|
default boolean |
WaitableFuture.awaitUninterruptibly(Duration timeoutMillis,
CancelOption... options) |
Wait for the asynchronous operation to complete with the specified timeout uninterruptibly.
|
default boolean |
WaitableFuture.awaitUninterruptibly(CancelOption... options) |
|
Boolean |
DefaultCancelFuture.verify(long timeoutMillis,
CancelOption... options) |
Wait and verify that the operation was successful
|
default T |
VerifiableFuture.verify(long timeout,
TimeUnit unit,
CancelOption... options) |
Wait and verify that the operation was successful
|
T |
VerifiableFuture.verify(long timeoutMillis,
CancelOption... options) |
Wait and verify that the operation was successful
|
default T |
VerifiableFuture.verify(Duration timeout,
CancelOption... options) |
Wait and verify that the operation was successful
|
default T |
VerifiableFuture.verify(CancelOption... options) |
|
protected <R> R |
AbstractSshFuture.verifyResult(Class<? extends R> expectedType,
long timeout,
CancelOption... options) |
Waits (interruptible) for the specified timeout (msec.) and then checks the result:
|