read method
Reads the TObject from the given input protocol.
Implementation
read(TProtocol iprot) {
TField field;
iprot.readStructBegin();
while (true) {
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case PART_LIST:
if (field.type == TType.LIST) {
{
TList _list148 = iprot.readListBegin();
this.part_list = <int>[];
for (int _i149 = 0; _i149 < _list148.length; ++_i149) {
int _elem150;
_elem150 = iprot.readI32();
this.part_list?.add(_elem150);
}
iprot.readListEnd();
}
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
break;
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}