Examples of ApplyOperation


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

    @Override
    protected Operation prepareOperation() {
        SerializationService serializationService = getClientEngine().getSerializationService();
        IFunction f = serializationService.toObject(function);
        //noinspection unchecked
        return new ApplyOperation(name, f);
    }
View Full Code Here

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

    @Override
    protected Operation prepareOperation() {
        IFunction f = serializationService.toObject(function);
        //noinspection unchecked
        return new ApplyOperation(name, f);
    }
View Full Code Here

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

    @Override
    protected Operation prepareOperation() {
        IFunction f = serializationService.toObject(function);
        //noinspection unchecked
        return new ApplyOperation(name, f);
    }
View Full Code Here

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

                    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:
                        return new GetOperation();
                    case GET_AND_SET:
View Full Code Here

Examples of com.hazelcast.concurrent.atomicreference.operations.ApplyOperation

    @Override
    public <R> InternalCompletableFuture<R> asyncApply(IFunction<E, R> function) {
        isNotNull(function, "function");

        NodeEngine nodeEngine = getNodeEngine();
        Operation operation = new ApplyOperation(name, nodeEngine.toData(function));
        return asyncInvoke(operation, nodeEngine);
    }
View Full Code Here

Examples of com.hazelcast.concurrent.atomicreference.operations.ApplyOperation

        this.function = function;
    }

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

Examples of com.hazelcast.concurrent.atomicreference.operations.ApplyOperation

        this.function = function;
    }

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

Examples of com.hazelcast.concurrent.atomicreference.operations.ApplyOperation

                    case ALTER_AND_GET:
                        return new AlterAndGetOperation();
                    case ALTER:
                        return new AlterOperation();
                    case APPLY:
                        return new ApplyOperation();
                    case COMPARE_AND_SET:
                        return new CompareAndSetOperation();
                    case CONTAINS:
                        return new ContainsOperation();
                    case GET_AND_ALTER:
View Full Code Here

Examples of com.hazelcast.concurrent.atomicreference.operations.ApplyOperation

        this.function = function;
    }

    @Override
    protected Operation prepareOperation() {
        return new ApplyOperation(name, function);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.