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 KVS:
        if (field.type == TType.MAP) {
          {
            TMap _map4 = iprot.readMapBegin();
            this.kvs = new Map<Int8List, Value>();
            for (int _i5 = 0; _i5 < _map4.length; ++_i5) {
              Int8List _key6;
              Value _val7;
              _key6 = iprot.readBinary();
              _val7 = new Value();
              _val7.read(iprot);
              this.kvs?[_key6] = _val7;
            }
            iprot.readMapEnd();
          }
        } 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();
}