Uses of Interface
com.oracle.coherence.concurrent.executor.Task
-
Packages that use Task Package Description com.oracle.coherence.concurrent.executor Classes to allow submission of tasks to the grid for execution.com.oracle.coherence.concurrent.executor.tasks Task
implementations. -
-
Uses of Task in com.oracle.coherence.concurrent.executor
Methods in com.oracle.coherence.concurrent.executor with parameters of type Task Modifier and Type Method Description <T> Task.Orchestration<T>
RemoteExecutor. orchestrate(Task<T> task)
Creates a pendingTask.Orchestration
for aTask
.default <T> Task.Coordinator<T>
RemoteExecutor. submit(Task<T> task)
Submits theTask
for execution by theRemoteExecutor
. -
Uses of Task in com.oracle.coherence.concurrent.executor.tasks
Classes in com.oracle.coherence.concurrent.executor.tasks that implement Task Modifier and Type Class Description class
CronTask<T>
ATask
that can run repeatedly at scheduled time, like a crontab job.class
ValueTask<T>
ATask
that provides a constant value as a result.Fields in com.oracle.coherence.concurrent.executor.tasks declared as Task Modifier and Type Field Description protected Task<T>
CronTask. m_origTask
The originalTask
.protected Task<T>
CronTask. m_task
The actualTask
.Methods in com.oracle.coherence.concurrent.executor.tasks that return Task Modifier and Type Method Description Task<T>
CronTask. getTask()
Obtains theCronTask
.Methods in com.oracle.coherence.concurrent.executor.tasks with parameters of type Task Modifier and Type Method Description static <T> CronTask<T>
CronTask. of(Task<T> task, String sCronPattern)
Obtains aCronTask
.static <T> CronTask<T>
CronTask. of(Task<T> task, String sCronPattern, boolean fClone)
Obtains aCronTask
.Constructors in com.oracle.coherence.concurrent.executor.tasks with parameters of type Task Constructor Description CronTask(Task<T> task, String sPattern)
Constructs aCronTask
.CronTask(Task<T> task, String sPattern, boolean fClone)
Constructs aCronTask
.
-