Package | Description |
---|---|
com.hfg.util |
Various utility classes.
|
Modifier and Type | Method and Description |
---|---|
Priority |
PrioritizedFutureTask.getPriority() |
static Priority |
Priority.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Priority[] |
Priority.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
protected <T> RunnableFuture<T> |
PrioritizedThreadPoolExecutor.newTaskFor(Callable<T> inCallable,
Priority inPriority)
Returns a
RunnableFuture for the given callable task. |
protected <T> RunnableFuture<T> |
PrioritizedThreadPoolExecutor.newTaskFor(Runnable inRunnable,
T inValue,
Priority inPriority)
Returns a
RunnableFuture for the given runnable and default
value. |
PrioritizedFutureTask<V> |
PrioritizedFutureTask.setPriority(Priority inValue) |
<T> Future<T> |
PrioritizedThreadPoolExecutor.submit(Callable<T> inTask,
Priority inPriority) |
Future<?> |
PrioritizedThreadPoolExecutor.submit(Runnable inTask,
Priority inPriority) |
<T> Future<T> |
PrioritizedThreadPoolExecutor.submit(Runnable task,
T result,
Priority inPriority) |
jataylor@hairyfatguy.com