Package com.hazelcast.queue

Examples of com.hazelcast.queue.PollOperation


    public PollRequest(String name, long timeoutMillis) {
        super(name, timeoutMillis);
    }

    protected Operation prepareOperation() {
        return new PollOperation(name, timeoutMillis);
    }
View Full Code Here


        super(name, timeoutMillis);
    }

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

        PeekOperation operation = new PeekOperation(name);
        return invokeAndGetData(operation);
    }

    Object pollInternal(long timeout) throws InterruptedException {
        PollOperation operation = new PollOperation(name, timeout);
        try {
            return invokeAndGet(operation);
        } catch (Throwable throwable) {
            throw ExceptionUtil.rethrowAllowInterrupted(throwable);
        }
View Full Code Here

TOP

Related Classes of com.hazelcast.queue.PollOperation

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.