Package | Description |
---|---|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.spi |
Provides interfaces/classes for the Hazelcast SPI for building distributed data structures and services.
|
Modifier and Type | Method and Description |
---|---|
void |
ICompletableFuture.andThen(ExecutionCallback<V> callback)
Registers a callback that will run after this future is completed.
|
void |
ICompletableFuture.andThen(ExecutionCallback<V> callback,
Executor executor)
Registers a callback that will run with the provided executor after this
future is completed.
|
<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.
|
void |
IMap.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback)
Applies the user defined
EntryProcessor to the entry mapped by the key with
specified ExecutionCallback to listen event status and returns immediately. |
<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.
|
Modifier and Type | Field and Description |
---|---|
protected ExecutionCallback<Object> |
InvocationBuilder.executionCallback |
Modifier and Type | Method and Description |
---|---|
ExecutionCallback<Object> |
InvocationBuilder.getExecutionCallback()
Gets the ExecutionCallback.
|
protected ExecutionCallback |
InvocationBuilder.getTargetExecutionCallback() |
Modifier and Type | Method and Description |
---|---|
<T> ICompletableFuture<Map<Integer,T>> |
OperationService.invokeOnAllPartitionsAsync(String serviceName,
OperationFactory operationFactory,
ExecutionCallback<Map<Integer,T>> callback)
Invokes a set of operations on selected set of all partitions in an async way.
|
<T> ICompletableFuture<Map<Integer,T>> |
OperationService.invokeOnPartitionsAsync(String serviceName,
OperationFactory operationFactory,
Collection<Integer> partitions,
ExecutionCallback<Map<Integer,T>> callback)
Invokes a set of operations on selected set of partitions in an async way.
|
InvocationBuilder |
InvocationBuilder.setExecutionCallback(ExecutionCallback<Object> executionCallback)
Sets the ExecutionCallback.
|
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.