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 JOB_TYPE:
if (field.type == TType.I32) {
this.job_type = iprot.readI32();
this.__isset_job_type = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case JOB_ID:
if (field.type == TType.I32) {
this.job_id = iprot.readI32();
this.__isset_job_id = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case TASK_ID:
if (field.type == TType.I32) {
this.task_id = iprot.readI32();
this.__isset_task_id = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case PARA:
if (field.type == TType.STRUCT) {
this.para = new TaskPara();
this.para?.read(iprot);
} 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();
}