189190191192193194195196
@Override public InternalCompletableFuture<Long> asyncAlterAndGet(IFunction<Long, Long> function) { isNotNull(function, "function"); Operation operation = new AlterAndGetOperation(name, function); return asyncInvoke(operation); }
29303132333435
super(name, function); } @Override protected Operation prepareOperation() { return new AlterAndGetOperation(name, getFunction()); }
6869707172737475767778
case ADD_AND_GET: return new AddAndGetOperation(); case ALTER: return new AlterOperation(); case ALTER_AND_GET: return new AlterAndGetOperation(); case APPLY: return new ApplyOperation(); case COMPARE_AND_SET: return new CompareAndSetOperation(); case GET: