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