Package com.sun.messaging.jmq.util

Examples of com.sun.messaging.jmq.util.JMQXid


            boolean setRedelivered) throws JMSServiceException  {
  JMSServiceReply reply;
  HashMap props = new HashMap();
  IMQConnection cxn;
  TransactionUID txnUID = null;
  JMQXid jmqXid = null;
  Integer xaFlags = null;

        cxn = checkConnectionId(connectionId, "rollbackTransaction");

  txnUID = new TransactionUID(transactionId);

  if (xid != null)  {
      jmqXid = new JMQXid(xid);
      /*
      xaFlags = new Integer(flags);
      */
  }

 
View Full Code Here


     @see javax.transaction.xa.XAResource#recover javax.transaction.xa.XAResource.recover()
     */
    public Xid[] recoverXATransactions(long connectionId, int flags)
          throws JMSServiceException  {
  IMQConnection cxn;
  JMQXid jmqXids[] = null;

        cxn = checkConnectionId(connectionId, "recoverXATransactions");

  try  {
      jmqXids = protocol.recoverTransaction(null);
View Full Code Here

     */
    public long recoverTransaction(long connectionId, long transactionId)
          throws JMSServiceException  {
  IMQConnection cxn;
        TransactionUID txnUID = null;
  JMQXid jmqXids[];
  long tid = 0;

        cxn = checkConnectionId(connectionId, "recoverTransaction");
  txnUID = new TransactionUID(transactionId);

View Full Code Here

TOP

Related Classes of com.sun.messaging.jmq.util.JMQXid

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.