use of com.swiftmq.jms.XidImpl in project swiftmq-ce by iitsoftware.
the class RollbackReplyRequest method readContent.
public void readContent(DataInput input) throws IOException {
super.readContent(input);
xid = new XidImpl();
xid.readContent(input);
}
use of com.swiftmq.jms.XidImpl in project swiftmq-ce by iitsoftware.
the class RollbackRequest method readContent.
public void readContent(DataInput input) throws IOException {
super.readContent(input);
xid = new XidImpl();
xid.readContent(input);
}
use of com.swiftmq.jms.XidImpl in project swiftmq-ce by iitsoftware.
the class TransactionRequest method readContent.
public void readContent(DataInput input) throws IOException {
super.readContent(input);
sequenceNo = input.readInt();
xid = new XidImpl();
xid.readContent(input);
int size = input.readInt();
messageList = new ArrayList();
for (int i = 0; i < size; i++) {
MessageImpl msg = MessageImpl.createInstance(input.readInt());
msg.readContent(input);
messageList.add(msg);
}
}
use of com.swiftmq.jms.XidImpl in project swiftmq-ce by iitsoftware.
the class CommitReplyRequest method readContent.
public void readContent(DataInput input) throws IOException {
super.readContent(input);
xid = new XidImpl();
xid.readContent(input);
}
use of com.swiftmq.jms.XidImpl in project swiftmq-ce by iitsoftware.
the class CommitRequest method readContent.
public void readContent(DataInput input) throws IOException {
super.readContent(input);
xid = new XidImpl();
xid.readContent(input);
}
Aggregations