A C E G I J M S T U

I

Identifiable - Interface in javax.util.concurrent
A tasks submitted to an ManagedExecutorService can optionally implement this interface.
invokeAll(Collection<? extends Callable<T>>, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.invokeAll(java.util.Collection) but also includes the ability to be notified when each task's lifecycle changes.
invokeAll(Collection<? extends Callable<T>>, long, TimeUnit, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.invokeAll(java.util.Collection, long, java.util.concurrent.TimeUnit) but also includes the ability to be notified when each task's lifecycle changes.
invokeAny(Collection<? extends Callable<T>>, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.invokeAny(java.util.Collection) but also includes the ability to be notified when each task's lifecycle changes.
invokeAny(Collection<Callable<T>>, long, TimeUnit) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.invokeAny(java.util.Collection, long, java.util.concurrent.TimeUnit) but also includes the ability to be notified when each task's lifecycle changes.

A C E G I J M S T U