read method

void read(
  1. TProtocol iprot
)
override

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 HOSTS:
        if (field.type == TType.LIST) {
          {
            TList _list242 = iprot.readListBegin();
            this.hosts = <t_nebula.HostAddr>[];
            for (int _i243 = 0; _i243 < _list242.length; ++_i243) {
              t_nebula.HostAddr _elem244;
              _elem244 = new t_nebula.HostAddr();
              _elem244.read(iprot);
              this.hosts?.add(_elem244);
            }
            iprot.readListEnd();
          }
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case ZONE_NAME:
        if (field.type == TType.STRING) {
          this.zone_name = iprot.readBinary();
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case IS_NEW:
        if (field.type == TType.BOOL) {
          this.is_new = iprot.readBool();
          this.__isset_is_new = 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();
}