Package | Description |
---|---|
com.hazelcast.spi |
Provides interfaces/classes for the Hazelcast SPI for building distributed data structures and services.
|
Modifier and Type | Method and Description |
---|---|
Map<Integer,Object> |
OperationService.invokeOnAllPartitions(String serviceName,
OperationFactory operationFactory)
Invokes a set of operations on each partition.
|
<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> Map<Integer,T> |
OperationService.invokeOnPartitions(String serviceName,
OperationFactory operationFactory,
Collection<Integer> partitions)
Invokes a set of operations on selected set of partitions.
|
Map<Integer,Object> |
OperationService.invokeOnPartitions(String serviceName,
OperationFactory operationFactory,
int[] partitions)
Invokes a set of operations on selected set of partitions.
|
<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.
|
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.