Alachisoft.NCache.Common.Util.QueueObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
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;
}
}