- call() - Method in interface java.util.concurrent.Callable
-
Computes a result, or throws an exception if unable to do so.
- Callable<V> - Interface in java.util.concurrent
-
A task that returns a result and may throw an exception.
- cancel(boolean) - Method in interface java.util.concurrent.Future
-
Attempts to cancel execution of this task.
- CancellationException - Exception in java.util.concurrent
-
Exception indicating that the result of a value-producing task, cannot be retrieved because the task was cancelled.
- CancellationException() - Constructor for exception java.util.concurrent.CancellationException
-
Constructs a CancellationException
with no detail message.
- CancellationException(String) - Constructor for exception java.util.concurrent.CancellationException
-
Constructs a CancellationException
with the specified detail message.
- convert(long, TimeUnit) - Method in enum java.util.concurrent.TimeUnit
-
Convert the given time duration in the given unit to this unit.