/**
   * Un-marshal an object instance from the data input stream
   *
   * @param o the object to un-marshal
   * @param dataIn the data input stream to build the object from
   * @throws IOException
   */
  @Override
  public void tightUnmarshal(
      OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
    super.tightUnmarshal(wireFormat, o, dataIn, bs);

    MessageId info = (MessageId) o;
    info.setTextView(tightUnmarshalString(dataIn, bs));
    info.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
  }
  /**
   * Un-marshal an object instance from the data input stream
   *
   * @param o the object to un-marshal
   * @param dataIn the data input stream to build the object from
   * @throws IOException
   */
  @Override
  public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn)
      throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);

    MessageId info = (MessageId) o;
    info.setTextView(looseUnmarshalString(dataIn));
    info.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
  }