com.xiaomi.infra.galaxy.emq.thrift.SendMessageRequest Maven / Gradle / Ivy
The newest version!
/**
* Autogenerated by Thrift Compiler (0.9.2)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package com.xiaomi.infra.galaxy.emq.thrift;
import libthrift091.scheme.IScheme;
import libthrift091.scheme.SchemeFactory;
import libthrift091.scheme.StandardScheme;
import libthrift091.scheme.TupleScheme;
import libthrift091.protocol.TTupleProtocol;
import libthrift091.protocol.TProtocolException;
import libthrift091.EncodingUtils;
import libthrift091.TException;
import libthrift091.async.AsyncMethodCallback;
import libthrift091.server.AbstractNonblockingServer.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = "2017-9-13")
public class SendMessageRequest implements libthrift091.TBase, java.io.Serializable, Cloneable, Comparable {
private static final libthrift091.protocol.TStruct STRUCT_DESC = new libthrift091.protocol.TStruct("SendMessageRequest");
private static final libthrift091.protocol.TField QUEUE_NAME_FIELD_DESC = new libthrift091.protocol.TField("queueName", libthrift091.protocol.TType.STRING, (short)1);
private static final libthrift091.protocol.TField MESSAGE_BODY_FIELD_DESC = new libthrift091.protocol.TField("messageBody", libthrift091.protocol.TType.STRING, (short)2);
private static final libthrift091.protocol.TField DELAY_SECONDS_FIELD_DESC = new libthrift091.protocol.TField("delaySeconds", libthrift091.protocol.TType.I32, (short)3);
private static final libthrift091.protocol.TField INVISIBILITY_SECONDS_FIELD_DESC = new libthrift091.protocol.TField("invisibilitySeconds", libthrift091.protocol.TType.I32, (short)4);
private static final libthrift091.protocol.TField MESSAGE_ATTRIBUTES_FIELD_DESC = new libthrift091.protocol.TField("messageAttributes", libthrift091.protocol.TType.MAP, (short)5);
private static final libthrift091.protocol.TField TOPIC_FIELD_DESC = new libthrift091.protocol.TField("topic", libthrift091.protocol.TType.STRING, (short)6);
private static final libthrift091.protocol.TField PRIORITY_FIELD_DESC = new libthrift091.protocol.TField("priority", libthrift091.protocol.TType.I32, (short)7);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new SendMessageRequestStandardSchemeFactory());
schemes.put(TupleScheme.class, new SendMessageRequestTupleSchemeFactory());
}
/**
* Queue name;
*
*/
public String queueName; // required
/**
* Message body;
*
*/
public String messageBody; // required
/**
* Delay seconds for this message, this will overwrite delaySecond of this
* queue, default 0s (0s ~ 15min);
*
*/
public int delaySeconds; // optional
/**
* Invisibility seconds for this message, this will overwrite
* invisibilitySeconds of this queue, default 30s (2s ~ 12hour);
*
*/
public int invisibilitySeconds; // optional
/**
* User-defined attributes attached to message
*
*/
public Map messageAttributes; // optional
/**
* Topic of this message
*
*/
public String topic; // optional
/**
* The priority of the message, default 8 (1 ~ 16);
*
*/
public int priority; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements libthrift091.TFieldIdEnum {
/**
* Queue name;
*
*/
QUEUE_NAME((short)1, "queueName"),
/**
* Message body;
*
*/
MESSAGE_BODY((short)2, "messageBody"),
/**
* Delay seconds for this message, this will overwrite delaySecond of this
* queue, default 0s (0s ~ 15min);
*
*/
DELAY_SECONDS((short)3, "delaySeconds"),
/**
* Invisibility seconds for this message, this will overwrite
* invisibilitySeconds of this queue, default 30s (2s ~ 12hour);
*
*/
INVISIBILITY_SECONDS((short)4, "invisibilitySeconds"),
/**
* User-defined attributes attached to message
*
*/
MESSAGE_ATTRIBUTES((short)5, "messageAttributes"),
/**
* Topic of this message
*
*/
TOPIC((short)6, "topic"),
/**
* The priority of the message, default 8 (1 ~ 16);
*
*/
PRIORITY((short)7, "priority");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // QUEUE_NAME
return QUEUE_NAME;
case 2: // MESSAGE_BODY
return MESSAGE_BODY;
case 3: // DELAY_SECONDS
return DELAY_SECONDS;
case 4: // INVISIBILITY_SECONDS
return INVISIBILITY_SECONDS;
case 5: // MESSAGE_ATTRIBUTES
return MESSAGE_ATTRIBUTES;
case 6: // TOPIC
return TOPIC;
case 7: // PRIORITY
return PRIORITY;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __DELAYSECONDS_ISSET_ID = 0;
private static final int __INVISIBILITYSECONDS_ISSET_ID = 1;
private static final int __PRIORITY_ISSET_ID = 2;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.DELAY_SECONDS,_Fields.INVISIBILITY_SECONDS,_Fields.MESSAGE_ATTRIBUTES,_Fields.TOPIC,_Fields.PRIORITY};
public static final Map<_Fields, libthrift091.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, libthrift091.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, libthrift091.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.QUEUE_NAME, new libthrift091.meta_data.FieldMetaData("queueName", libthrift091.TFieldRequirementType.REQUIRED,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
tmpMap.put(_Fields.MESSAGE_BODY, new libthrift091.meta_data.FieldMetaData("messageBody", libthrift091.TFieldRequirementType.REQUIRED,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
tmpMap.put(_Fields.DELAY_SECONDS, new libthrift091.meta_data.FieldMetaData("delaySeconds", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.I32)));
tmpMap.put(_Fields.INVISIBILITY_SECONDS, new libthrift091.meta_data.FieldMetaData("invisibilitySeconds", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.I32)));
tmpMap.put(_Fields.MESSAGE_ATTRIBUTES, new libthrift091.meta_data.FieldMetaData("messageAttributes", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.MapMetaData(libthrift091.protocol.TType.MAP,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING),
new libthrift091.meta_data.StructMetaData(libthrift091.protocol.TType.STRUCT, MessageAttribute.class))));
tmpMap.put(_Fields.TOPIC, new libthrift091.meta_data.FieldMetaData("topic", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.STRING)));
tmpMap.put(_Fields.PRIORITY, new libthrift091.meta_data.FieldMetaData("priority", libthrift091.TFieldRequirementType.OPTIONAL,
new libthrift091.meta_data.FieldValueMetaData(libthrift091.protocol.TType.I32)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
libthrift091.meta_data.FieldMetaData.addStructMetaDataMap(SendMessageRequest.class, metaDataMap);
}
public SendMessageRequest() {
}
public SendMessageRequest(
String queueName,
String messageBody)
{
this();
this.queueName = queueName;
this.messageBody = messageBody;
}
/**
* Performs a deep copy on other.
*/
public SendMessageRequest(SendMessageRequest other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetQueueName()) {
this.queueName = other.queueName;
}
if (other.isSetMessageBody()) {
this.messageBody = other.messageBody;
}
this.delaySeconds = other.delaySeconds;
this.invisibilitySeconds = other.invisibilitySeconds;
if (other.isSetMessageAttributes()) {
Map __this__messageAttributes = new HashMap(other.messageAttributes.size());
for (Map.Entry other_element : other.messageAttributes.entrySet()) {
String other_element_key = other_element.getKey();
MessageAttribute other_element_value = other_element.getValue();
String __this__messageAttributes_copy_key = other_element_key;
MessageAttribute __this__messageAttributes_copy_value = new MessageAttribute(other_element_value);
__this__messageAttributes.put(__this__messageAttributes_copy_key, __this__messageAttributes_copy_value);
}
this.messageAttributes = __this__messageAttributes;
}
if (other.isSetTopic()) {
this.topic = other.topic;
}
this.priority = other.priority;
}
public SendMessageRequest deepCopy() {
return new SendMessageRequest(this);
}
@Override
public void clear() {
this.queueName = null;
this.messageBody = null;
setDelaySecondsIsSet(false);
this.delaySeconds = 0;
setInvisibilitySecondsIsSet(false);
this.invisibilitySeconds = 0;
this.messageAttributes = null;
this.topic = null;
setPriorityIsSet(false);
this.priority = 0;
}
/**
* Queue name;
*
*/
public String getQueueName() {
return this.queueName;
}
/**
* Queue name;
*
*/
public SendMessageRequest setQueueName(String queueName) {
this.queueName = queueName;
return this;
}
public void unsetQueueName() {
this.queueName = null;
}
/** Returns true if field queueName is set (has been assigned a value) and false otherwise */
public boolean isSetQueueName() {
return this.queueName != null;
}
public void setQueueNameIsSet(boolean value) {
if (!value) {
this.queueName = null;
}
}
/**
* Message body;
*
*/
public String getMessageBody() {
return this.messageBody;
}
/**
* Message body;
*
*/
public SendMessageRequest setMessageBody(String messageBody) {
this.messageBody = messageBody;
return this;
}
public void unsetMessageBody() {
this.messageBody = null;
}
/** Returns true if field messageBody is set (has been assigned a value) and false otherwise */
public boolean isSetMessageBody() {
return this.messageBody != null;
}
public void setMessageBodyIsSet(boolean value) {
if (!value) {
this.messageBody = null;
}
}
/**
* Delay seconds for this message, this will overwrite delaySecond of this
* queue, default 0s (0s ~ 15min);
*
*/
public int getDelaySeconds() {
return this.delaySeconds;
}
/**
* Delay seconds for this message, this will overwrite delaySecond of this
* queue, default 0s (0s ~ 15min);
*
*/
public SendMessageRequest setDelaySeconds(int delaySeconds) {
this.delaySeconds = delaySeconds;
setDelaySecondsIsSet(true);
return this;
}
public void unsetDelaySeconds() {
__isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __DELAYSECONDS_ISSET_ID);
}
/** Returns true if field delaySeconds is set (has been assigned a value) and false otherwise */
public boolean isSetDelaySeconds() {
return EncodingUtils.testBit(__isset_bitfield, __DELAYSECONDS_ISSET_ID);
}
public void setDelaySecondsIsSet(boolean value) {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __DELAYSECONDS_ISSET_ID, value);
}
/**
* Invisibility seconds for this message, this will overwrite
* invisibilitySeconds of this queue, default 30s (2s ~ 12hour);
*
*/
public int getInvisibilitySeconds() {
return this.invisibilitySeconds;
}
/**
* Invisibility seconds for this message, this will overwrite
* invisibilitySeconds of this queue, default 30s (2s ~ 12hour);
*
*/
public SendMessageRequest setInvisibilitySeconds(int invisibilitySeconds) {
this.invisibilitySeconds = invisibilitySeconds;
setInvisibilitySecondsIsSet(true);
return this;
}
public void unsetInvisibilitySeconds() {
__isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __INVISIBILITYSECONDS_ISSET_ID);
}
/** Returns true if field invisibilitySeconds is set (has been assigned a value) and false otherwise */
public boolean isSetInvisibilitySeconds() {
return EncodingUtils.testBit(__isset_bitfield, __INVISIBILITYSECONDS_ISSET_ID);
}
public void setInvisibilitySecondsIsSet(boolean value) {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __INVISIBILITYSECONDS_ISSET_ID, value);
}
public int getMessageAttributesSize() {
return (this.messageAttributes == null) ? 0 : this.messageAttributes.size();
}
public void putToMessageAttributes(String key, MessageAttribute val) {
if (this.messageAttributes == null) {
this.messageAttributes = new HashMap();
}
this.messageAttributes.put(key, val);
}
/**
* User-defined attributes attached to message
*
*/
public Map getMessageAttributes() {
return this.messageAttributes;
}
/**
* User-defined attributes attached to message
*
*/
public SendMessageRequest setMessageAttributes(Map messageAttributes) {
this.messageAttributes = messageAttributes;
return this;
}
public void unsetMessageAttributes() {
this.messageAttributes = null;
}
/** Returns true if field messageAttributes is set (has been assigned a value) and false otherwise */
public boolean isSetMessageAttributes() {
return this.messageAttributes != null;
}
public void setMessageAttributesIsSet(boolean value) {
if (!value) {
this.messageAttributes = null;
}
}
/**
* Topic of this message
*
*/
public String getTopic() {
return this.topic;
}
/**
* Topic of this message
*
*/
public SendMessageRequest setTopic(String topic) {
this.topic = topic;
return this;
}
public void unsetTopic() {
this.topic = null;
}
/** Returns true if field topic is set (has been assigned a value) and false otherwise */
public boolean isSetTopic() {
return this.topic != null;
}
public void setTopicIsSet(boolean value) {
if (!value) {
this.topic = null;
}
}
/**
* The priority of the message, default 8 (1 ~ 16);
*
*/
public int getPriority() {
return this.priority;
}
/**
* The priority of the message, default 8 (1 ~ 16);
*
*/
public SendMessageRequest setPriority(int priority) {
this.priority = priority;
setPriorityIsSet(true);
return this;
}
public void unsetPriority() {
__isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __PRIORITY_ISSET_ID);
}
/** Returns true if field priority is set (has been assigned a value) and false otherwise */
public boolean isSetPriority() {
return EncodingUtils.testBit(__isset_bitfield, __PRIORITY_ISSET_ID);
}
public void setPriorityIsSet(boolean value) {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __PRIORITY_ISSET_ID, value);
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case QUEUE_NAME:
if (value == null) {
unsetQueueName();
} else {
setQueueName((String)value);
}
break;
case MESSAGE_BODY:
if (value == null) {
unsetMessageBody();
} else {
setMessageBody((String)value);
}
break;
case DELAY_SECONDS:
if (value == null) {
unsetDelaySeconds();
} else {
setDelaySeconds((Integer)value);
}
break;
case INVISIBILITY_SECONDS:
if (value == null) {
unsetInvisibilitySeconds();
} else {
setInvisibilitySeconds((Integer)value);
}
break;
case MESSAGE_ATTRIBUTES:
if (value == null) {
unsetMessageAttributes();
} else {
setMessageAttributes((Map)value);
}
break;
case TOPIC:
if (value == null) {
unsetTopic();
} else {
setTopic((String)value);
}
break;
case PRIORITY:
if (value == null) {
unsetPriority();
} else {
setPriority((Integer)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case QUEUE_NAME:
return getQueueName();
case MESSAGE_BODY:
return getMessageBody();
case DELAY_SECONDS:
return Integer.valueOf(getDelaySeconds());
case INVISIBILITY_SECONDS:
return Integer.valueOf(getInvisibilitySeconds());
case MESSAGE_ATTRIBUTES:
return getMessageAttributes();
case TOPIC:
return getTopic();
case PRIORITY:
return Integer.valueOf(getPriority());
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case QUEUE_NAME:
return isSetQueueName();
case MESSAGE_BODY:
return isSetMessageBody();
case DELAY_SECONDS:
return isSetDelaySeconds();
case INVISIBILITY_SECONDS:
return isSetInvisibilitySeconds();
case MESSAGE_ATTRIBUTES:
return isSetMessageAttributes();
case TOPIC:
return isSetTopic();
case PRIORITY:
return isSetPriority();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof SendMessageRequest)
return this.equals((SendMessageRequest)that);
return false;
}
public boolean equals(SendMessageRequest that) {
if (that == null)
return false;
boolean this_present_queueName = true && this.isSetQueueName();
boolean that_present_queueName = true && that.isSetQueueName();
if (this_present_queueName || that_present_queueName) {
if (!(this_present_queueName && that_present_queueName))
return false;
if (!this.queueName.equals(that.queueName))
return false;
}
boolean this_present_messageBody = true && this.isSetMessageBody();
boolean that_present_messageBody = true && that.isSetMessageBody();
if (this_present_messageBody || that_present_messageBody) {
if (!(this_present_messageBody && that_present_messageBody))
return false;
if (!this.messageBody.equals(that.messageBody))
return false;
}
boolean this_present_delaySeconds = true && this.isSetDelaySeconds();
boolean that_present_delaySeconds = true && that.isSetDelaySeconds();
if (this_present_delaySeconds || that_present_delaySeconds) {
if (!(this_present_delaySeconds && that_present_delaySeconds))
return false;
if (this.delaySeconds != that.delaySeconds)
return false;
}
boolean this_present_invisibilitySeconds = true && this.isSetInvisibilitySeconds();
boolean that_present_invisibilitySeconds = true && that.isSetInvisibilitySeconds();
if (this_present_invisibilitySeconds || that_present_invisibilitySeconds) {
if (!(this_present_invisibilitySeconds && that_present_invisibilitySeconds))
return false;
if (this.invisibilitySeconds != that.invisibilitySeconds)
return false;
}
boolean this_present_messageAttributes = true && this.isSetMessageAttributes();
boolean that_present_messageAttributes = true && that.isSetMessageAttributes();
if (this_present_messageAttributes || that_present_messageAttributes) {
if (!(this_present_messageAttributes && that_present_messageAttributes))
return false;
if (!this.messageAttributes.equals(that.messageAttributes))
return false;
}
boolean this_present_topic = true && this.isSetTopic();
boolean that_present_topic = true && that.isSetTopic();
if (this_present_topic || that_present_topic) {
if (!(this_present_topic && that_present_topic))
return false;
if (!this.topic.equals(that.topic))
return false;
}
boolean this_present_priority = true && this.isSetPriority();
boolean that_present_priority = true && that.isSetPriority();
if (this_present_priority || that_present_priority) {
if (!(this_present_priority && that_present_priority))
return false;
if (this.priority != that.priority)
return false;
}
return true;
}
@Override
public int hashCode() {
List