/**
   * 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
   */
  public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn)
      throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);

    ControlCommand info = (ControlCommand) o;
    info.setCommand(looseUnmarshalString(dataIn));
  }
Ejemplo n.º 2
0
  /**
   * 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
   */
  public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn)
      throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);

    ReplayCommand info = (ReplayCommand) o;
    info.setFirstNakNumber(dataIn.readInt());
    info.setLastNakNumber(dataIn.readInt());
  }
/**