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 SRC:
        if (field.type == TType.STRUCT) {
          this.src = new Vertex();
          this.src?.read(iprot);
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case STEPS:
        if (field.type == TType.LIST) {
          {
            TList _list60 = iprot.readListBegin();
            this.steps = <Step>[];
            for (int _i61 = 0; _i61 < _list60.length; ++_i61) {
              Step _elem62;
              _elem62 = new Step();
              _elem62.read(iprot);
              this.steps?.add(_elem62);
            }
            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();
}