public interface IExecutorService extends ExecutorService, DistributedObject
ExecutorService
.
IExecutorService provides additional methods like executing tasks
on a specific member, on a member who is owner of a specific key,
executing a tasks on multiple members and listening execution result using a callback.Modifier and Type | Method and Description |
---|---|
void |
execute(Runnable command,
MemberSelector memberSelector)
Executes a task on a randomly selected member.
|
void |
executeOnAllMembers(Runnable command)
Executes a task on all of the known cluster members.
|
void |
executeOnKeyOwner(Runnable command,
Object key)
Executes a task on the owner of the specified key.
|
void |
executeOnMember(Runnable command,
Member member)
Executes a task on the specified member.
|
void |
executeOnMembers(Runnable command,
Collection<Member> members)
Executes a task on each of the specified members.
|
void |
executeOnMembers(Runnable command,
MemberSelector memberSelector)
Executes a task on each of the selected members.
|
LocalExecutorStats |
getLocalExecutorStats()
Returns local statistics related to this executor service.
|
<T> void |
submit(Callable<T> task,
ExecutionCallback<T> callback)
Submits a task to a random member.
|
<T> Future<T> |
submit(Callable<T> task,
MemberSelector memberSelector)
Submits a task to a randomly selected member and returns a Future
representing that task.
|
<T> void |
submit(Callable<T> task,
MemberSelector memberSelector,
ExecutionCallback<T> callback)
Submits task to a randomly selected member.
|
<T> void |
submit(Runnable task,
ExecutionCallback<T> callback)
Submits a task to a random member.
|
<T> void |
submit(Runnable task,
MemberSelector memberSelector,
ExecutionCallback<T> callback)
Submits a task to randomly selected members.
|
<T> Map<Member,Future<T>> |
submitToAllMembers(Callable<T> task)
Submits task to all cluster members and returns a
map of Member-Future pairs representing pending completion of the task on each member.
|
<T> void |
submitToAllMembers(Callable<T> task,
MultiExecutionCallback callback)
Submits task to all the cluster members.
|
void |
submitToAllMembers(Runnable task,
MultiExecutionCallback callback)
Submits task to all the cluster members.
|
<T> Future<T> |
submitToKeyOwner(Callable<T> task,
Object key)
Submits a task to the owner of the specified key and returns a Future
representing that task.
|
<T> void |
submitToKeyOwner(Callable<T> task,
Object key,
ExecutionCallback<T> callback)
Submits task to the owner of the specified key.
|
<T> void |
submitToKeyOwner(Runnable task,
Object key,
ExecutionCallback<T> callback)
Submits a task to the owner of the specified key.
|
<T> Future<T> |
submitToMember(Callable<T> task,
Member member)
Submits a task to the specified member and returns a Future
representing that task.
|
<T> void |
submitToMember(Callable<T> task,
Member member,
ExecutionCallback<T> callback)
Submits a task to the specified member.
|
<T> void |
submitToMember(Runnable task,
Member member,
ExecutionCallback<T> callback)
Submits a task to the specified member.
|
<T> Map<Member,Future<T>> |
submitToMembers(Callable<T> task,
Collection<Member> members)
Submits a task to given members and returns
map of Member-Future pairs representing pending completion of the task on each member
|
<T> void |
submitToMembers(Callable<T> task,
Collection<Member> members,
MultiExecutionCallback callback)
Submits a task to the specified members.
|
<T> Map<Member,Future<T>> |
submitToMembers(Callable<T> task,
MemberSelector memberSelector)
Submits a task to selected members and returns a
map of Member-Future pairs representing pending completion of the task on each member.
|
<T> void |
submitToMembers(Callable<T> task,
MemberSelector memberSelector,
MultiExecutionCallback callback)
Submits task to the selected members.
|
void |
submitToMembers(Runnable task,
Collection<Member> members,
MultiExecutionCallback callback)
Submits a task to the specified members.
|
void |
submitToMembers(Runnable task,
MemberSelector memberSelector,
MultiExecutionCallback callback)
Submits task to the selected members.
|
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submit
destroy, getName, getPartitionKey, getServiceName
void execute(Runnable command, MemberSelector memberSelector)
command
- the task that is executed on a randomly selected membermemberSelector
- memberSelectorRejectedExecutionException
- if no member is selectedvoid executeOnKeyOwner(Runnable command, Object key)
command
- a task executed on the owner of the specified keykey
- the specified keyvoid executeOnMember(Runnable command, Member member)
command
- the task executed on the specified membermember
- the specified membervoid executeOnMembers(Runnable command, Collection<Member> members)
command
- the task executed on the specified membersmembers
- the specified membersvoid executeOnMembers(Runnable command, MemberSelector memberSelector)
command
- a task executed on each of the selected membersmemberSelector
- memberSelectorRejectedExecutionException
- if no member is selectedvoid executeOnAllMembers(Runnable command)
command
- a task executed on all of the known cluster members<T> Future<T> submit(Callable<T> task, MemberSelector memberSelector)
task
- task submitted to a randomly selected membermemberSelector
- memberSelectorRejectedExecutionException
- if no member is selected<T> Future<T> submitToKeyOwner(Callable<T> task, Object key)
task
- task submitted to the owner of the specified keykey
- the specified key<T> Future<T> submitToMember(Callable<T> task, Member member)
task
- the task submitted to the specified membermember
- the specified member<T> Map<Member,Future<T>> submitToMembers(Callable<T> task, Collection<Member> members)
task
- the task submitted to given membersmembers
- the given members<T> Map<Member,Future<T>> submitToMembers(Callable<T> task, MemberSelector memberSelector)
task
- the task submitted to selected membersmemberSelector
- memberSelectorRejectedExecutionException
- if no member is selected<T> Map<Member,Future<T>> submitToAllMembers(Callable<T> task)
task
- the task submitted to all cluster members<T> void submit(Runnable task, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- a task submitted to a random membercallback
- callback<T> void submit(Runnable task, MemberSelector memberSelector, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to randomly selected membersmemberSelector
- memberSelectorcallback
- callbackRejectedExecutionException
- if no member is selected<T> void submitToKeyOwner(Runnable task, Object key, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- task submitted to the owner of the specified keykey
- the specified keycallback
- callback<T> void submitToMember(Runnable task, Member member, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to the specified membermember
- the specified membercallback
- callbackvoid submitToMembers(Runnable task, Collection<Member> members, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to the specified membersmembers
- the specified memberscallback
- callbackvoid submitToMembers(Runnable task, MemberSelector memberSelector, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to the selected membersmemberSelector
- memberSelectorcallback
- callbackRejectedExecutionException
- if no member is selectedvoid submitToAllMembers(Runnable task, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to all the cluster memberscallback
- callback<T> void submit(Callable<T> task, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to a random membercallback
- callback<T> void submit(Callable<T> task, MemberSelector memberSelector, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to a randomly selected membermemberSelector
- memberSelectorcallback
- callbackRejectedExecutionException
- if no member is selected<T> void submitToKeyOwner(Callable<T> task, Object key, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to the owner of the specified keycallback
- callback<T> void submitToMember(Callable<T> task, Member member, ExecutionCallback<T> callback)
ExecutionCallback.onResponse(Object)
or ExecutionCallback.onFailure(Throwable)
.task
- the task submitted to the specified membercallback
- callback<T> void submitToMembers(Callable<T> task, Collection<Member> members, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to the specified membersmembers
- the specified memberscallback
- callback<T> void submitToMembers(Callable<T> task, MemberSelector memberSelector, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to the selected membersmemberSelector
- memberSelectorcallback
- callbackRejectedExecutionException
- if no member is selected<T> void submitToAllMembers(Callable<T> task, MultiExecutionCallback callback)
MultiExecutionCallback.onResponse(Member, Object)
, and when all tasks are completed,
MultiExecutionCallback.onComplete(java.util.Map)
will be called.task
- the task submitted to all the cluster memberscallback
- callbackLocalExecutorStats getLocalExecutorStats()
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.