org.apache.activemq.openwire.commands.MessageId

Here are the examples of the java api class org.apache.activemq.openwire.commands.MessageId taken from open source projects.

1. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalString1(info.getTextView(), bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

2. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalString1(info.getTextView(), bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

3. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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));
}

4. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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));
}

5. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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));
}

6. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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));
}

7. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

8. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

9. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

10. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

11. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

12. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

13. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

14. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

15. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

16. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

17. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

18. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

19. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

20. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

21. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

22. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

23. MessageIdMarshaller#looseUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((org.apache.activemq.openwire.commands.ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setProducerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
    info.setBrokerSequenceId(looseUnmarshalLong(wireFormat, dataIn));
}

24. MessageIdMarshaller#tightUnmarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * 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.setProducerId((org.apache.activemq.openwire.commands.ProducerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setProducerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setBrokerSequenceId(tightUnmarshalLong(wireFormat, dataIn, bs));
}

25. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

26. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

27. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

28. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

29. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

30. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

31. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

32. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

33. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

34. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

35. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

36. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

37. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

38. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

39. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

40. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

41. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

42. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

43. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

44. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

45. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

46. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

47. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

48. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}

49. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalString(info.getTextView(), dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

50. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalString2(info.getTextView(), dataOut, bs);
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

51. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalString(info.getTextView(), dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

52. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalString2(info.getTextView(), dataOut, bs);
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

53. MessageIdMarshaller#looseMarshal()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {
    MessageId info = (MessageId) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, info.getProducerId(), dataOut);
    looseMarshalLong(wireFormat, info.getProducerSequenceId(), dataOut);
    looseMarshalLong(wireFormat, info.getBrokerSequenceId(), dataOut);
}

54. MessageIdMarshaller#tightMarshal2()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write a object instance to data output stream
     *
     * @param o
     *        the instance to be marshaled
     * @param dataOut
     *        the output stream
     * @throws IOException
     *         thrown if an error occurs
     */
@Override
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    MessageId info = (MessageId) o;
    tightMarshalCachedObject2(wireFormat, info.getProducerId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getProducerSequenceId(), dataOut, bs);
    tightMarshalLong2(wireFormat, info.getBrokerSequenceId(), dataOut, bs);
}

55. MessageIdMarshaller#tightMarshal1()

Project: activemq-openwire
File: MessageIdMarshaller.java
/**
     * Write the booleans that this object uses to a BooleanStream
     */
@Override
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    MessageId info = (MessageId) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalCachedObject1(wireFormat, info.getProducerId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getProducerSequenceId(), bs);
    rc += tightMarshalLong1(wireFormat, info.getBrokerSequenceId(), bs);
    return rc + 0;
}