use of com.hazelcast.internal.partition.service.fragment.TestFragmentIncrementOperation in project hazelcast by hazelcast.
the class PartitionCorrectnessTestSupport method fillData.
void fillData(HazelcastInstance hz) {
NodeEngine nodeEngine = getNode(hz).nodeEngine;
OperationService operationService = nodeEngine.getOperationService();
for (int i = 0; i < partitionCount; i++) {
operationService.invokeOnPartition(null, new TestIncrementOperation(), i);
for (String name : NAMESPACES) {
operationService.invokeOnPartition(null, new TestFragmentIncrementOperation(name), i);
}
}
}
Aggregations