Package com.hazelcast.queue

Examples of com.hazelcast.queue.OfferOperation


        super(name, timeoutMillis);
        this.data = data;
    }

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


        this.data = data;
    }

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

        }
    }

    boolean offerInternal(Data data, long timeout) throws InterruptedException {
        throwExceptionIfNull(data);
        OfferOperation operation = new OfferOperation(name, timeout, data);
        try {
            return (Boolean) invokeAndGet(operation);
        } catch (Throwable throwable) {
            throw ExceptionUtil.rethrowAllowInterrupted(throwable);
        }
View Full Code Here

TOP

Related Classes of com.hazelcast.queue.OfferOperation

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.