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