Uses of Interface
com.hazelcast.durableexecutor.DurableExecutorServiceFuture
Packages that use DurableExecutorServiceFuture
Package
Description
This package contains DurableExecutorService functionality for Hazelcast.
The DurableExecutorService extends the
The DurableExecutorService extends the
ExecutorService
and provides additional methods like
executing tasks on a member who is owner of a specific key.-
Uses of DurableExecutorServiceFuture in com.hazelcast.durableexecutor
Methods in com.hazelcast.durableexecutor that return DurableExecutorServiceFutureModifier and TypeMethodDescriptionSubmits a Runnable task for execution and returns a Future representing that task.<T> DurableExecutorServiceFuture<T>
Submits a Runnable task for execution and returns a Future representing that task.<T> DurableExecutorServiceFuture<T>
Submits a value-returning task for execution and returns a Future representing the pending results of the task.DurableExecutorService.submitToKeyOwner
(Runnable task, Object key) Submits a task to the owner of the specified key and returns a Future representing that task.<T> DurableExecutorServiceFuture<T>
DurableExecutorService.submitToKeyOwner
(Callable<T> task, Object key) Submits a task to the owner of the specified key and returns a Future representing that task.