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 PARTS:
if (field.type == TType.LIST) {
{
TList _list246 = iprot.readListBegin();
this.parts = <int>[];
for (int _i247 = 0; _i247 < _list246.length; ++_i247) {
int _elem248;
_elem248 = iprot.readI32();
this.parts?.add(_elem248);
}
iprot.readListEnd();
}
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case TASK_SPECIFIC_PARAS:
if (field.type == TType.LIST) {
{
TList _list249 = iprot.readListBegin();
this.task_specific_paras = <Int8List>[];
for (int _i250 = 0; _i250 < _list249.length; ++_i250) {
Int8List _elem251;
_elem251 = iprot.readBinary();
this.task_specific_paras?.add(_elem251);
}
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();
}