Package com.hazelcast.queue

Examples of com.hazelcast.queue.PeekOperation


    public PeekRequest(String name) {
        super(name);
    }

    protected Operation prepareOperation() {
        return new PeekOperation(name);
    }
View Full Code Here


        super(name);
    }

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

        ClearOperation operation = new ClearOperation(name);
        invokeAndGet(operation);
    }

    Object peekInternal() {
        PeekOperation operation = new PeekOperation(name);
        return invokeAndGetData(operation);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.queue.PeekOperation

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.