All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alachisoft.ncache.client.internal.messaging.MessageCollectionEventItem Maven / Gradle / Ivy

package com.alachisoft.ncache.client.internal.messaging;

import com.alachisoft.ncache.runtime.caching.DistributedDataStructure;
import com.alachisoft.ncache.runtime.events.DataTypeEventDataFilter;

public class MessageCollectionEventItem extends MessageEventItemBase {
    /*
     *  NOTE : Key is the Name of the collection.
     */
    private Object collectionItem;
    private Object oldCollectionItem;
    private DistributedDataStructure dataType;
    private DataTypeEventDataFilter dataFilter;

    public Object getCollectionItem() {
        return collectionItem;
    }

    public void setCollectionItem(Object value) {
        collectionItem = value;
    }

    public Object getOldCollectionItem() {
        return oldCollectionItem;
    }

    public void setOldCollectionItem(Object value) {
        oldCollectionItem = value;
    }

    public DistributedDataStructure getDataType() {
        return dataType;
    }

    public void setDataType(DistributedDataStructure value) {
        dataType = value;
    }

    public DataTypeEventDataFilter getDataFilter() {
        return dataFilter;
    }

    public void setDataFilter(DataTypeEventDataFilter value) {
        dataFilter = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy