com.softwarementors.extjs.djn
Class ParallelTask<V>
java.lang.Object
com.softwarementors.extjs.djn.ParallelTask<V>
- All Implemented Interfaces:
- java.util.concurrent.Future<java.util.Collection<V>>
public class ParallelTask<V>
- extends java.lang.Object
- implements java.util.concurrent.Future<java.util.Collection<V>>
Constructor Summary |
ParallelTask(java.util.concurrent.Executor exec,
java.util.Collection<java.util.concurrent.Callable<V>> callable,
int permits)
|
Method Summary |
boolean |
cancel(boolean mayInterruptIfRunning)
|
java.util.Collection<V> |
get()
|
java.util.Collection<V> |
get(long timeout,
java.util.concurrent.TimeUnit unit)
|
boolean |
isCancelled()
|
boolean |
isDone()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ParallelTask
public ParallelTask(java.util.concurrent.Executor exec,
java.util.Collection<java.util.concurrent.Callable<V>> callable,
int permits)
cancel
public boolean cancel(boolean mayInterruptIfRunning)
- Specified by:
cancel
in interface java.util.concurrent.Future<java.util.Collection<V>>
get
public java.util.Collection<V> get()
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException
- Specified by:
get
in interface java.util.concurrent.Future<java.util.Collection<V>>
- Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException
get
public java.util.Collection<V> get(long timeout,
java.util.concurrent.TimeUnit unit)
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException,
java.util.concurrent.TimeoutException
- Specified by:
get
in interface java.util.concurrent.Future<java.util.Collection<V>>
- Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException
java.util.concurrent.TimeoutException
isCancelled
public boolean isCancelled()
- Specified by:
isCancelled
in interface java.util.concurrent.Future<java.util.Collection<V>>
isDone
public boolean isDone()
- Specified by:
isDone
in interface java.util.concurrent.Future<java.util.Collection<V>>