Package com.hazelcast.collection.list

Examples of com.hazelcast.collection.list.ListSubOperation


        this.to = to;
    }

    @Override
    protected Operation prepareOperation() {
        return new ListSubOperation(name, from, to);
    }
View Full Code Here


                return new ListAddAllOperation();
            }
        };
        constructors[LIST_SUB] = new ConstructorFunction<Integer, IdentifiedDataSerializable>() {
            public IdentifiedDataSerializable createNew(Integer arg) {
                return new ListSubOperation();
            }
        };
        constructors[COLLECTION_COMPARE_AND_REMOVE] = new ConstructorFunction<Integer, IdentifiedDataSerializable>() {
            public IdentifiedDataSerializable createNew(Integer arg) {
                return new CollectionCompareAndRemoveOperation();
View Full Code Here

        this.to = to;
    }

    @Override
    protected Operation prepareOperation() {
        return new ListSubOperation(name, from, to);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.collection.list.ListSubOperation

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.