Package com.hazelcast.queue

Examples of com.hazelcast.queue.IsEmptyOperation


        super(name);
    }

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


            throw ExceptionUtil.rethrowAllowInterrupted(throwable);
        }
    }

    public boolean isEmpty() {
        IsEmptyOperation operation = new IsEmptyOperation(name);
        return (Boolean) invokeAndGet(operation);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.queue.IsEmptyOperation

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.