Package org.mule.util.xa

Examples of org.mule.util.xa.MuleXid


    }

    @Override
    public Collection<XaQueueTxJournalEntry> getLogEntriesForTx(Xid txId)
    {
        return super.getLogEntriesForTx(new MuleXid(txId));
    }
View Full Code Here


public class XaQueueTxJournalEntry extends AbstractQueueTxJournalEntry<Xid>
{

    public XaQueueTxJournalEntry(Xid txId, byte operation, String queueName, Serializable value)
    {
        super(new MuleXid(txId), operation, queueName, value);
    }
View Full Code Here

        super(new MuleXid(txId), operation, queueName, value);
    }

    public XaQueueTxJournalEntry(Xid txId, byte operation)
    {
        super(new MuleXid(txId), operation);
    }
View Full Code Here

        inputStream.read(globalTransactionId, 0, globalTransactionIdSize);
        byte branchQualifierIdSize = inputStream.readByte();
        final byte[] branchQualifierId = new byte[branchQualifierIdSize];
        inputStream.read(branchQualifierId, 0, branchQualifierIdSize);
        final int formadId = inputStream.readInt();
        return new MuleXid(formadId, globalTransactionId, branchQualifierId);
    }
View Full Code Here

TOP

Related Classes of org.mule.util.xa.MuleXid

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.