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 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 DEPEND_SCHEMA:
        if (field.type == TType.STRUCT) {
          this.depend_schema = new t_nebula.SchemaID();
          this.depend_schema?.read(iprot);
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case FIELDS:
        if (field.type == TType.LIST) {
          {
            TList _list328 = iprot.readListBegin();
            this.fields = <Int8List>[];
            for (int _i329 = 0; _i329 < _list328.length; ++_i329) {
              Int8List _elem330;
              _elem330 = iprot.readBinary();
              this.fields?.add(_elem330);
            }
            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();
}