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 EDGE_NAME:
        if (field.type == TType.STRING) {
          this.edge_name = iprot.readBinary();
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case EDGE_ITEMS:
        if (field.type == TType.LIST) {
          {
            TList _list96 = iprot.readListBegin();
            this.edge_items = <AlterSchemaItem>[];
            for (int _i97 = 0; _i97 < _list96.length; ++_i97) {
              AlterSchemaItem _elem98;
              _elem98 = new AlterSchemaItem();
              _elem98.read(iprot);
              this.edge_items?.add(_elem98);
            }
            iprot.readListEnd();
          }
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case SCHEMA_PROP:
        if (field.type == TType.STRUCT) {
          this.schema_prop = new SchemaProp();
          this.schema_prop?.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();
}