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 RESULT:
if (field.type == TType.STRUCT) {
this.result = new ResponseCommon();
this.result?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PROPS:
if (field.type == TType.STRUCT) {
this.props = new t_nebula.DataSet();
this.props?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case CURSORS:
if (field.type == TType.MAP) {
{
TMap _map240 = iprot.readMapBegin();
this.cursors = <int, ScanCursor>{};
for (int _i241 = 0; _i241 < _map240.length; ++_i241) {
int _key242;
ScanCursor _val243;
_key242 = iprot.readI32();
_val243 = new ScanCursor();
_val243.read(iprot);
this.cursors?[_key242] = _val243;
}
iprot.readMapEnd();
}
} 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();
}