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 CODE:
if (field.type == TType.I32) {
this.code = iprot.readI32();
this.__isset_code = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case LEADER:
if (field.type == TType.STRUCT) {
this.leader = new t_nebula.HostAddr();
this.leader?.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case CLUSTER_ID:
if (field.type == TType.I64) {
this.cluster_id = iprot.readI64();
this.__isset_cluster_id = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case LAST_UPDATE_TIME_IN_MS:
if (field.type == TType.I64) {
this.last_update_time_in_ms = iprot.readI64();
this.__isset_last_update_time_in_ms = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case META_VERSION:
if (field.type == TType.I32) {
this.meta_version = iprot.readI32();
this.__isset_meta_version = 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
validate();
}