Package | Description |
---|---|
com.jogamp.opencl.util.concurrent |
OpenCL multi device concurrency utilities.
|
Modifier and Type | Method and Description |
---|---|
<R> Future<R> |
CLCommandQueuePool.submit(CLTask<? super C,R> task)
Submits this task to the pool for execution returning its
Future . |
Modifier and Type | Method and Description |
---|---|
<R> List<Future<R>> |
CLCommandQueuePool.invokeAll(Collection<? extends CLTask<? super C,R>> tasks)
Submits all tasks to the pool for immediate execution (blocking) and returns their
Future holding the result. |
<R> List<Future<R>> |
CLCommandQueuePool.invokeAll(Collection<? extends CLTask<? super C,R>> tasks,
long timeout,
TimeUnit unit)
Submits all tasks to the pool for immediate execution (blocking) and returns their
Future holding the result. |
<R> List<Future<R>> |
CLCommandQueuePool.submitAll(Collection<? extends CLTask<? super C,R>> tasks)
Submits all tasks to the pool for execution and returns their
Future . |