use of com.hazelcast.concurrent.atomiclong.operations.AlterOperation in project hazelcast by hazelcast.
the class AtomicLongProxy method alterAsync.
@Override
public InternalCompletableFuture<Void> alterAsync(IFunction<Long, Long> function) {
isNotNull(function, "function");
Operation operation = new AlterOperation(name, function).setPartitionId(partitionId);
return invokeOnPartition(operation);
}
Aggregations