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 UPDATE_EDGE_REQUEST:
        if (field.type == TType.STRUCT) {
          this.update_edge_request = new UpdateEdgeRequest();
          this.update_edge_request?.read(iprot);
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case TERM:
        if (field.type == TType.I64) {
          this.term = iprot.readI64();
          this.__isset_term = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case EDGE_VERSION:
        if (field.type == TType.I64) {
          this.edge_version = iprot.readI64();
          this.__isset_edge_version = true;
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      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 PARTS:
        if (field.type == TType.LIST) {
          {
            TList _list342 = iprot.readListBegin();
            this.parts = <int>[];
            for (int _i343 = 0; _i343 < _list342.length; ++_i343) {
              int _elem344;
              _elem344 = iprot.readI32();
              this.parts?.add(_elem344);
            }
            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();
}