|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IExecutorService
Distributed implementation of 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.
ExecutorService,
ExecutionCallback,
MultiExecutionCallback| Method Summary | ||
|---|---|---|
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. |
|
|
submit(Callable<T> task,
ExecutionCallback<T> callback)
Submits a task to a random member. |
|
|
submit(Callable<T> task,
MemberSelector memberSelector)
Submits a task to a randomly selected member and returns a Future representing that task. |
|
|
submit(Callable<T> task,
MemberSelector memberSelector,
ExecutionCallback<T> callback)
Submits task to a randomly selected member. |
|
|
submit(Runnable task,
ExecutionCallback<T> callback)
Submits a task to a random member. |
|
|
submit(Runnable task,
MemberSelector memberSelector,
ExecutionCallback<T> callback)
Submits a task to randomly selected members. |
|
|
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. |
|
|
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. |
|
|
submitToKeyOwner(Callable<T> task,
Object key)
Submits a task to the owner of the specified key and returns a Future representing that task. |
|
|
submitToKeyOwner(Callable<T> task,
Object key,
ExecutionCallback<T> callback)
Submits task to the owner of the specified key. |
|
|
submitToKeyOwner(Runnable task,
Object key,
ExecutionCallback<T> callback)
Submits a task to the owner of the specified key. |
|
|
submitToMember(Callable<T> task,
Member member)
Submits a task to the specified member and returns a Future representing that task. |
|
|
submitToMember(Callable<T> task,
Member member,
ExecutionCallback<T> callback)
Submits a task to the specified member. |
|
|
submitToMember(Runnable task,
Member member,
ExecutionCallback<T> callback)
Submits a task to the specified member. |
|
|
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 |
|
|
submitToMembers(Callable<T> task,
Collection<Member> members,
MultiExecutionCallback callback)
Submits a task to the specified members. |
|
|
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. |
|
|
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. |
|
| Methods inherited from interface java.util.concurrent.ExecutorService |
|---|
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submit |
| Methods inherited from interface java.util.concurrent.Executor |
|---|
execute |
| Methods inherited from interface com.hazelcast.core.DistributedObject |
|---|
destroy, getId, getName, getPartitionKey, getServiceName |
| Method Detail |
|---|
void execute(Runnable command,
MemberSelector memberSelector)
command - the task that is executed on a randomly selected membermemberSelector - memberSelector
RejectedExecutionException - if no member is selected
void executeOnKeyOwner(Runnable command,
Object key)
command - a task executed on the owner of the specified keykey - the specified key
void executeOnMember(Runnable command,
Member member)
command - the task executed on the specified membermember - the specified member
void executeOnMembers(Runnable command,
Collection<Member> members)
command - the task executed on the specified membersmembers - the specified members
void executeOnMembers(Runnable command,
MemberSelector memberSelector)
command - a task executed on each of the selected membersmemberSelector - memberSelector
RejectedExecutionException - 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 - memberSelector
RejectedExecutionException - 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 - memberSelector
RejectedExecutionException - 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 - callback
RejectedExecutionException - 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 - callback
void 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 - callback
void 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 - callback
RejectedExecutionException - if no member is selected
void 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 - callback
RejectedExecutionException - 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 - callback
RejectedExecutionException - 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()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||