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 KEY:
if (field.type == TType.STRUCT) {
this.key = new EdgeKey();
this.key?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PROPS:
if (field.type == TType.LIST) {
{
TList _list104 = iprot.readListBegin();
this.props = <t_nebula.Value>[];
for (int _i105 = 0; _i105 < _list104.length; ++_i105) {
t_nebula.Value _elem106;
_elem106 = new t_nebula.Value();
_elem106.read(iprot);
this.props?.add(_elem106);
}
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();
}