use of com.hazelcast.replicatedmap.impl.operation.RequestMapDataOperation in project hazelcast by hazelcast.
the class ReplicatedMapProxy method requestDataForPartition.
private void requestDataForPartition(int partitionId) {
RequestMapDataOperation requestMapDataOperation = new RequestMapDataOperation(name);
OperationService operationService = nodeEngine.getOperationService();
operationService.createInvocationBuilder(SERVICE_NAME, requestMapDataOperation, partitionId).setTryCount(ReplicatedMapService.INVOCATION_TRY_COUNT).invoke();
}
Aggregations