| Package | Description |
|---|---|
| org.jboss.threads |
| Modifier and Type | Field and Description |
|---|---|
private AsyncFuture.Status |
AsyncFutureTask.status |
| Modifier and Type | Method and Description |
|---|---|
AsyncFuture.Status |
AsyncFuture.await()
Wait if necessary for this operation to complete, returning the outcome.
|
AsyncFuture.Status |
AsyncFutureTask.await()
Wait if necessary for this operation to complete, returning the outcome.
|
AsyncFuture.Status |
AsyncFuture.await(long timeout,
java.util.concurrent.TimeUnit unit)
Wait if necessary for this operation to complete, returning the outcome, which may include
WAITING if
the timeout expires before the operation completes. |
AsyncFuture.Status |
AsyncFutureTask.await(long timeout,
java.util.concurrent.TimeUnit unit)
Wait if necessary for this operation to complete, returning the outcome, which may include
WAITING if
the timeout expires before the operation completes. |
AsyncFuture.Status |
AsyncFuture.awaitUninterruptibly()
Wait (uninterruptibly) if necessary for this operation to complete, returning the outcome.
|
AsyncFuture.Status |
AsyncFutureTask.awaitUninterruptibly()
Wait (uninterruptibly) if necessary for this operation to complete, returning the outcome.
|
AsyncFuture.Status |
AsyncFuture.awaitUninterruptibly(long timeout,
java.util.concurrent.TimeUnit unit)
Wait if necessary for this operation to complete, returning the outcome, which may include
WAITING if
the timeout expires before the operation completes. |
AsyncFuture.Status |
AsyncFutureTask.awaitUninterruptibly(long timeout,
java.util.concurrent.TimeUnit unit)
Wait if necessary for this operation to complete, returning the outcome, which may include
WAITING if
the timeout expires before the operation completes. |
AsyncFuture.Status |
AsyncFuture.getStatus()
Get (poll) the current status of the asynchronous operation.
|
AsyncFuture.Status |
AsyncFutureTask.getStatus()
Get (poll) the current status of the asynchronous operation.
|
static AsyncFuture.Status |
AsyncFuture.Status.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsyncFuture.Status[] |
AsyncFuture.Status.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|