Uses of Interface
com.jogamp.opencl.util.concurrent.CLTask

Packages that use CLTask
com.jogamp.opencl.util.concurrent OpenCL multi device concurrency utilities. 
 

Uses of CLTask in com.jogamp.opencl.util.concurrent
 

Methods in com.jogamp.opencl.util.concurrent with parameters of type CLTask
<R> Future<R>
CLCommandQueuePool.submit(CLTask<? super C,R> task)
          Submits this task to the pool for execution returning its Future.
 

Method parameters in com.jogamp.opencl.util.concurrent with type arguments of type CLTask
<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.