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 S2_MAX_LEVEL:
if (field.type == TType.I32) {
this.s2_max_level = iprot.readI32();
this.__isset_s2_max_level = true;
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case S2_MAX_CELLS:
if (field.type == TType.I32) {
this.s2_max_cells = iprot.readI32();
this.__isset_s2_max_cells = 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();
}