| Package | Description | 
|---|---|
| com.hazelcast.core | 
 Provides core API interfaces/classes. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
<T> void | 
IExecutorService.submit(Callable<T> 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(Runnable task,
      ExecutionCallback<T> callback)
Submits a task to a random member. 
 | 
<T> void | 
IExecutorService.submit(Runnable task,
      MemberSelector memberSelector,
      ExecutionCallback<T> callback)
Submits a task to randomly selected members. 
 | 
<T> void | 
IExecutorService.submitToKeyOwner(Callable<T> task,
                Object key,
                ExecutionCallback<T> callback)
Submits task to the owner of the specified key. 
 | 
<T> void | 
IExecutorService.submitToKeyOwner(Runnable task,
                Object key,
                ExecutionCallback<T> callback)
Submits a task to the owner of the specified key. 
 | 
<T> void | 
IExecutorService.submitToMember(Callable<T> task,
              Member member,
              ExecutionCallback<T> callback)
Submits a task to the specified member. 
 | 
<T> void | 
IExecutorService.submitToMember(Runnable task,
              Member member,
              ExecutionCallback<T> callback)
Submits a task to the specified member. 
 | 
Copyright © 2023 Hazelcast, Inc.. All rights reserved.