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 VID:
if (field.type == TType.STRUCT) {
this.vid = new Value();
this.vid?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case TAGS:
if (field.type == TType.LIST) {
{
TList _list44 = iprot.readListBegin();
this.tags = <Tag>[];
for (int _i45 = 0; _i45 < _list44.length; ++_i45) {
Tag _elem46;
_elem46 = new Tag();
_elem46.read(iprot);
this.tags?.add(_elem46);
}
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();
}