A C E G I J M S T U

S

schedule(Runnable, Trigger, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a task based on a Trigger.
schedule(Callable<V>, Trigger, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a task based on a Trigger.
schedule(Runnable, long, TimeUnit, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a one-shot action that becomes enabled after the given delay.
schedule(Callable<V>, long, TimeUnit, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a ScheduledFuture that becomes enabled after the given delay.
scheduleAtFixedRate(Runnable, long, long, TimeUnit, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that is executions will commence after initialDelay then initialDelay+period, then initialDelay + 2 * period, and so on.
scheduleWithFixedDelay(Runnable, long, long, TimeUnit, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedScheduledExecutorService
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given delay between the termination of one execution and the commencement of the next.
setProperties(Object, Properties) - Method in interface javax.util.concurrent.ContextService
Sets the properties on the context proxy instance.
SkippedException - Exception in javax.util.concurrent
Exception indicating that the result of a value-producing task, cannot be retrieved because the task run was skipped.
SkippedException() - Constructor for exception javax.util.concurrent.SkippedException
Constructs an SkippedException with null as its detail message.
SkippedException(String) - Constructor for exception javax.util.concurrent.SkippedException
Constructs an SkippedException exception with the specified detail message.
SkippedException(String, Throwable) - Constructor for exception javax.util.concurrent.SkippedException
Constructs an SkippedException exception with the specified detail message and cause.
SkippedException(Throwable) - Constructor for exception javax.util.concurrent.SkippedException
Constructs an SkippedException exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
skipRun(Future, Date) - Method in interface javax.util.concurrent.Trigger
Return true if this run instance should be skipped.
submit(Runnable, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.submit(java.lang.Runnable) but also includes the ability to be notified when the task's lifecycle changes.
submit(Runnable, T, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService#submit(java.lang.Runnable, T) but also includes the ability to be notified when the task's lifecycle changes.
submit(Callable<T>, ManagedTaskListener) - Method in interface javax.util.concurrent.ManagedExecutorService
This method has the same semantics as ExecutorService.submit(java.util.concurrent.Callable) but also includes the ability to be notified when the task's lifecycle changes.

A C E G I J M S T U