Package com.hazelcast.concurrent.atomiclong.operations

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


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

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


        super(name, function);
    }

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

        super(name, function);
    }

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

                    case GET:
                        return new GetOperation();
                    case GET_AND_SET:
                        return new GetAndSetOperation();
                    case GET_AND_ALTER:
                        return new GetAndAlterOperation();
                    case GET_AND_ADD:
                        return new GetAndAddOperation();
                    case SET_OPERATION:
                        return new SetOperation();
                    case SET_BACKUP:
View Full Code Here

TOP

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

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.