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 SPACE_ID:
if (field.type == TType.I32) {
this.space_id = iprot.readI32();
this.__isset_space_id = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case OP:
if (field.type == TType.I32) {
this.op = iprot.readI32();
this.__isset_op = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case TYPE:
if (field.type == TType.I32) {
this.type = iprot.readI32();
this.__isset_type = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PARAS:
if (field.type == TType.LIST) {
{
TList _list36 = iprot.readListBegin();
this.paras = <Int8List>[];
for (int _i37 = 0; _i37 < _list36.length; ++_i37) {
Int8List _elem38;
_elem38 = iprot.readBinary();
this.paras?.add(_elem38);
}
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();
}