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 ROOT:
if (field.type == TType.STRING) {
this.root = iprot.readBinary();
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case DATA:
if (field.type == TType.LIST) {
{
TList _list64 = iprot.readListBegin();
this.data = <Int8List>[];
for (int _i65 = 0; _i65 < _list64.length; ++_i65) {
Int8List _elem66;
_elem66 = iprot.readBinary();
this.data?.add(_elem66);
}
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();
}