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_IDS:
if (field.type == TType.LIST) {
{
TList _list306 = iprot.readListBegin();
this.space_ids = <int>[];
for (int _i307 = 0; _i307 < _list306.length; ++_i307) {
int _elem308;
_elem308 = iprot.readI32();
this.space_ids?.add(_elem308);
}
iprot.readListEnd();
}
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case SIGN:
if (field.type == TType.I32) {
this.sign = iprot.readI32();
this.__isset_sign = true;
} 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
if (!__isset_sign) {
throw new TProtocolError(
TProtocolErrorType.UNKNOWN,
"Required field 'sign' was not found in serialized data! Struct: " +
toString());
}
validate();
}