use of com.hazelcast.replicatedmap.impl.operation.PutAllOperation in project hazelcast by hazelcast.
the class ReplicatedMapProxy method createPutAllOperationFuture.
private Future createPutAllOperationFuture(String name, MapEntries entrySet, int partitionId) {
OperationService operationService = nodeEngine.getOperationService();
Operation op = new PutAllOperation(name, entrySet);
return operationService.invokeOnPartition(SERVICE_NAME, op, partitionId);
}
use of com.hazelcast.replicatedmap.impl.operation.PutAllOperation in project hazelcast by hazelcast.
the class ReplicatedMapProxy method createPutAllOperationFuture.
private Future createPutAllOperationFuture(String name, ReplicatedMapEntries entrySet, int partitionId) {
OperationService operationService = nodeEngine.getOperationService();
Operation op = new PutAllOperation(name, entrySet);
return operationService.invokeOnPartition(SERVICE_NAME, op, partitionId);
}
Aggregations