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 TAG:
if (field.type == TType.I32) {
this.tag = iprot.readI32();
this.__isset_tag = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PROPS:
if (field.type == TType.LIST) {
{
TList _list14 = iprot.readListBegin();
this.props = <Int8List>[];
for (int _i15 = 0; _i15 < _list14.length; ++_i15) {
Int8List _elem16;
_elem16 = iprot.readBinary();
this.props?.add(_elem16);
}
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();
}