Package com.hazelcast.queue

Examples of com.hazelcast.queue.ClearOperation


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

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


        super(name);
    }

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

        SizeOperation operation = new SizeOperation(name);
        return (Integer) invokeAndGet(operation);
    }

    public void clear() {
        ClearOperation operation = new ClearOperation(name);
        invokeAndGet(operation);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.queue.ClearOperation

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.