| 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 task to a random member. 
 | 
void | 
IExecutorService.submit(Runnable task,
      ExecutionCallback callback)
Submits task to a random member. 
 | 
<T> void | 
IExecutorService.submitToKeyOwner(Callable<T> task,
                Object key,
                ExecutionCallback<T> callback)
Submits task to owner of the specified key. 
 | 
void | 
IExecutorService.submitToKeyOwner(Runnable task,
                Object key,
                ExecutionCallback callback)
Submits task to owner of the specified key. 
 | 
<T> void | 
IExecutorService.submitToMember(Callable<T> task,
              Member member,
              ExecutionCallback<T> callback)
Submits task to the specified member. 
 | 
void | 
IExecutorService.submitToMember(Runnable task,
              Member member,
              ExecutionCallback callback)
Submits task to the specified member. 
 | 
Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.