/** Write the booleans that this object uses to a BooleanStream */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut)
      throws IOException {

    ProducerId info = (ProducerId) o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalString(info.getConnectionId(), dataOut);
    looseMarshalLong(wireFormat, info.getValue(), dataOut);
    looseMarshalLong(wireFormat, info.getSessionId(), dataOut);
  }