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 Taskimplementations. -
-
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.Orchestrationfor aTask.default <T> Task.Coordinator<T>RemoteExecutor. submit(Task<T> task)Submits theTaskfor 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 classCronTask<T>ATaskthat can run repeatedly at scheduled time, like a crontab job.classValueTask<T>ATaskthat 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_origTaskThe originalTask.protected Task<T>CronTask. m_taskThe 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.
-