Uses of Interface
com.hazelcast.core.ExecutionCallback
-
Uses of ExecutionCallback in com.hazelcast.core
Modifier and TypeMethodDescription<T> void
IExecutorService.submit
(Runnable task, MemberSelector memberSelector, ExecutionCallback<T> callback) Submits a task to randomly selected members.<T> void
IExecutorService.submit
(Runnable task, ExecutionCallback<T> callback) Submits a task to a random member.<T> void
IExecutorService.submit
(Callable<T> task, MemberSelector memberSelector, ExecutionCallback<T> callback) Submits task to a randomly selected member.<T> void
IExecutorService.submit
(Callable<T> task, ExecutionCallback<T> callback) Submits a task to a random member.<T> void
IExecutorService.submitToKeyOwner
(Runnable task, Object key, ExecutionCallback<T> callback) Submits a task to the owner of the specified key.<T> void
IExecutorService.submitToKeyOwner
(Callable<T> task, Object key, ExecutionCallback<T> callback) Submits task to the owner of the specified key.<T> void
IExecutorService.submitToMember
(Runnable task, Member member, ExecutionCallback<T> callback) Submits a task to the specified member.<T> void
IExecutorService.submitToMember
(Callable<T> task, Member member, ExecutionCallback<T> callback) Submits a task to the specified member.