Search in sources :

Example 1 with RequestMapDataOperation

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();
}
Also used : RequestMapDataOperation(com.hazelcast.replicatedmap.impl.operation.RequestMapDataOperation) OperationService(com.hazelcast.spi.OperationService)

Aggregations

RequestMapDataOperation (com.hazelcast.replicatedmap.impl.operation.RequestMapDataOperation)1 OperationService (com.hazelcast.spi.OperationService)1