Package com.hazelcast.map.operation

Examples of com.hazelcast.map.operation.ContainsValueOperationFactory


        this.value = value;
    }

    @Override
    protected OperationFactory createOperationFactory() {
        return new ContainsValueOperationFactory(name, value);
    }
View Full Code Here


    public boolean containsValueInternal(Data dataValue) {
        final NodeEngine nodeEngine = getNodeEngine();
        try {
            Map<Integer, Object> results = nodeEngine.getOperationService()
                    .invokeOnAllPartitions(SERVICE_NAME, new ContainsValueOperationFactory(name, dataValue));
            for (Object result : results.values()) {
                Boolean contains = (Boolean) getService().getMapServiceContext().toObject(result);
                if (contains) {
                    return true;
                }
View Full Code Here

        this.value = value;
    }

    @Override
    protected OperationFactory createOperationFactory() {
        return new ContainsValueOperationFactory(name, value);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.map.operation.ContainsValueOperationFactory

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.