176177178179180181182183
@Override public InternalCompletableFuture<Void> asyncAlter(IFunction<Long, Long> function) { isNotNull(function, "function"); Operation operation = new AlterOperation(name, function); return asyncInvoke(operation); }
29303132333435
super(name, function); } @Override protected Operation prepareOperation() { return new AlterOperation(name, getFunction()); }
6667686970717273747576
case ADD_BACKUP: return new AddBackupOperation(); 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: