com.xiaomi.infra.galaxy.emq.thrift.SendMessageBatchRequestEntry 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 SendMessageBatchRequestEntry implements libthrift091.TBase, java.io.Serializable, Cloneable, Comparable {
private static final libthrift091.protocol.TStruct STRUCT_DESC = new libthrift091.protocol.TStruct("SendMessageBatchRequestEntry");
private static final libthrift091.protocol.TField ENTRY_ID_FIELD_DESC = new libthrift091.protocol.TField("entryId", 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 PRIORITY_FIELD_DESC = new libthrift091.protocol.TField("priority", libthrift091.protocol.TType.I32, (short)6);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new SendMessageBatchRequestEntryStandardSchemeFactory());
schemes.put(TupleScheme.class, new SendMessageBatchRequestEntryTupleSchemeFactory());
}
/**
* The identifier for this particular receipt handle;
* Using to identify the result in response;
* Need to be unique within one batch
*
*/
public String entryId; // 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
/**
* 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 {
/**
* The identifier for this particular receipt handle;
* Using to identify the result in response;
* Need to be unique within one batch
*
*/
ENTRY_ID((short)1, "entryId"),
/**
* 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"),
/**
* The priority of the message, default 8 (1 ~ 16);
*
*/
PRIORITY((short)6, "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: // ENTRY_ID
return ENTRY_ID;
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: // 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.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.ENTRY_ID, new libthrift091.meta_data.FieldMetaData("entryId", 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.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(SendMessageBatchRequestEntry.class, metaDataMap);
}
public SendMessageBatchRequestEntry() {
}
public SendMessageBatchRequestEntry(
String entryId,
String messageBody)
{
this();
this.entryId = entryId;
this.messageBody = messageBody;
}
/**
* Performs a deep copy on other.
*/
public SendMessageBatchRequestEntry(SendMessageBatchRequestEntry other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetEntryId()) {
this.entryId = other.entryId;
}
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;
}
this.priority = other.priority;
}
public SendMessageBatchRequestEntry deepCopy() {
return new SendMessageBatchRequestEntry(this);
}
@Override
public void clear() {
this.entryId = null;
this.messageBody = null;
setDelaySecondsIsSet(false);
this.delaySeconds = 0;
setInvisibilitySecondsIsSet(false);
this.invisibilitySeconds = 0;
this.messageAttributes = null;
setPriorityIsSet(false);
this.priority = 0;
}
/**
* The identifier for this particular receipt handle;
* Using to identify the result in response;
* Need to be unique within one batch
*
*/
public String getEntryId() {
return this.entryId;
}
/**
* The identifier for this particular receipt handle;
* Using to identify the result in response;
* Need to be unique within one batch
*
*/
public SendMessageBatchRequestEntry setEntryId(String entryId) {
this.entryId = entryId;
return this;
}
public void unsetEntryId() {
this.entryId = null;
}
/** Returns true if field entryId is set (has been assigned a value) and false otherwise */
public boolean isSetEntryId() {
return this.entryId != null;
}
public void setEntryIdIsSet(boolean value) {
if (!value) {
this.entryId = null;
}
}
/**
* Message body;
*
*/
public String getMessageBody() {
return this.messageBody;
}
/**
* Message body;
*
*/
public SendMessageBatchRequestEntry 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 SendMessageBatchRequestEntry 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 SendMessageBatchRequestEntry 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 SendMessageBatchRequestEntry 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;
}
}
/**
* 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 SendMessageBatchRequestEntry 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 ENTRY_ID:
if (value == null) {
unsetEntryId();
} else {
setEntryId((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 PRIORITY:
if (value == null) {
unsetPriority();
} else {
setPriority((Integer)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case ENTRY_ID:
return getEntryId();
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 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 ENTRY_ID:
return isSetEntryId();
case MESSAGE_BODY:
return isSetMessageBody();
case DELAY_SECONDS:
return isSetDelaySeconds();
case INVISIBILITY_SECONDS:
return isSetInvisibilitySeconds();
case MESSAGE_ATTRIBUTES:
return isSetMessageAttributes();
case PRIORITY:
return isSetPriority();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof SendMessageBatchRequestEntry)
return this.equals((SendMessageBatchRequestEntry)that);
return false;
}
public boolean equals(SendMessageBatchRequestEntry that) {
if (that == null)
return false;
boolean this_present_entryId = true && this.isSetEntryId();
boolean that_present_entryId = true && that.isSetEntryId();
if (this_present_entryId || that_present_entryId) {
if (!(this_present_entryId && that_present_entryId))
return false;
if (!this.entryId.equals(that.entryId))
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_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