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 FILES:
        if (field.type == TType.LIST) {
          {
            TList _list292 = iprot.readListBegin();
            this.files = <Int8List>[];
            for (int _i293 = 0; _i293 < _list292.length; ++_i293) {
              Int8List _elem294;
              _elem294 = iprot.readBinary();
              this.files?.add(_elem294);
            }
            iprot.readListEnd();
          }
        } else {
          TProtocolUtil.skip(iprot, field.type);
        }
        break;
      case HOSTS:
        if (field.type == TType.LIST) {
          {
            TList _list295 = iprot.readListBegin();
            this.hosts = <HostPair>[];
            for (int _i296 = 0; _i296 < _list295.length; ++_i296) {
              HostPair _elem297;
              _elem297 = new HostPair();
              _elem297.read(iprot);
              this.hosts?.add(_elem297);
            }
            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();
}