Package com.hazelcast.concurrent.atomiclong.operations

Examples of com.hazelcast.concurrent.atomiclong.operations.AlterOperation


    @Override
    public InternalCompletableFuture<Void> asyncAlter(IFunction<Long, Long> function) {
        isNotNull(function, "function");

        Operation operation = new AlterOperation(name, function);
        return asyncInvoke(operation);
    }
View Full Code Here


        super(name, function);
    }

    @Override
    protected Operation prepareOperation() {
        return new AlterOperation(name, getFunction());
    }
View Full Code Here

        super(name, function);
    }

    @Override
    protected Operation prepareOperation() {
        return new AlterOperation(name, getFunction());
    }
View Full Code Here

                    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:
View Full Code Here

TOP

Related Classes of com.hazelcast.concurrent.atomiclong.operations.AlterOperation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.