use of org.apache.activemq.command.TransactionId in project activemq-artemis by apache.
the class OpenWireMessageConverter method setAMQMsgOriginalTransactionId.
private static void setAMQMsgOriginalTransactionId(final ActiveMQMessage amqMsg, final WireFormat marshaller, final byte[] origTxIdBytes) throws IOException {
TransactionId origTxId = (TransactionId) marshaller.unmarshal(new ByteSequence(origTxIdBytes));
amqMsg.setOriginalTransactionId(origTxId);
}
use of org.apache.activemq.command.TransactionId in project activemq-artemis by apache.
the class TransactionIdTestSupport method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
TransactionId info = (TransactionId) object;
}
use of org.apache.activemq.command.TransactionId in project activemq-artemis by apache.
the class TransactionIdTestSupport method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
TransactionId info = (TransactionId) object;
}
use of org.apache.activemq.command.TransactionId in project activemq-artemis by apache.
the class TransactionIdTestSupport method populateObject.
@Override
protected void populateObject(Object object) throws Exception {
super.populateObject(object);
TransactionId info = (TransactionId) object;
}
Aggregations