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

Alachisoft.NCache.Common.Util.QueueObject Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
package Alachisoft.NCache.Common.Util;

import java.io.Serializable;

public class QueueObject implements Serializable {

    private String _key;
    private String _command;
    private long _index;

    public QueueObject(String key, String command) {
        _key = key;
        _command = command;
    }

    public final long getIndex() {
        return _index;
    }

    public final void setIndex(long value) {
        _index = value;
    }

    public final String getKey() {
        return _key;
    }

    public final void setKey(String value) {
        _key = value;
    }

    public final String getCommand() {
        return _command;
    }

    public final void setCommand(String value) {
        _command = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy