Package org.apache.activemq.command

Examples of org.apache.activemq.command.IntegerResponse


        return info;
    }

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        IntegerResponse info = (IntegerResponse)object;
        info.setResult(1);

    }
View Full Code Here



    public static final IntegerResponseTest SINGLETON = new IntegerResponseTest();

    public Object createObject() throws Exception {
        IntegerResponse info = new IntegerResponse();
        populateObject(info);
        return info;
    }
View Full Code Here

        return info;
    }

    protected void populateObject(Object object) throws Exception {
        super.populateObject(object);
        IntegerResponse info = (IntegerResponse) object;

        info.setResult(1);
    }
View Full Code Here

        public PrepareReadonlyTransactionAction(TransactionInfo info) {
            super(info);
        }

        public void onResponse(Command command) {
            IntegerResponse response = (IntegerResponse) command;
            if (XAResource.XA_RDONLY == response.getResult()) {
                // all done, no commit or rollback from TM
                super.onResponse(command);
            }
        }
View Full Code Here

        try {
            TransactionInfo info = new TransactionInfo(getConnectionId(), x, TransactionInfo.PREPARE);

            // Find out if the server wants to commit or rollback.
            IntegerResponse response = (IntegerResponse)syncSendPacketWithInterruptionHandling(info);
            if (XAResource.XA_RDONLY == response.getResult()) {
                // transaction stops now, may be syncs that need a callback
            synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
                  List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
                  if (l != null && !l.isEmpty()) {
                      if (LOG.isDebugEnabled()) {
                          LOG.debug("firing afterCommit callbacks on XA_RDONLY from prepare: " + xid);
                      }
                      for (TransactionContext ctx : l) {
                          ctx.afterCommit();
                      }
                  }
            }
            }
            return response.getResult();

        } catch (JMSException e) {
            LOG.warn("prepare of: " + x + " failed with: " + e, e);
          synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
              List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
View Full Code Here

            transactionState.setPreparedResult(result);
            if (result == XAResource.XA_RDONLY) {
                // we are done, no further rollback or commit from TM
                cs.removeTransactionState(info.getTransactionId());
            }
            IntegerResponse response = new IntegerResponse(result);
            return response;
        } else {
            IntegerResponse response = new IntegerResponse(transactionState.getPreparedResult());
            return response;
        }
    }
View Full Code Here

        try {
            TransactionInfo info = new TransactionInfo(getConnectionId(), x, TransactionInfo.PREPARE);

            // Find out if the server wants to commit or rollback.
            IntegerResponse response = (IntegerResponse)syncSendPacketWithInterruptionHandling(info);
            if (XAResource.XA_RDONLY == response.getResult()) {
                // transaction stops now, may be syncs that need a callback
            synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
                  List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
                  if (l != null && !l.isEmpty()) {
                      if (LOG.isDebugEnabled()) {
                          LOG.debug("firing afterCommit callbacks on XA_RDONLY from prepare: " + xid);
                      }
                      for (TransactionContext ctx : l) {
                          ctx.afterCommit();
                      }
                  }
            }
            }
            return response.getResult();

        } catch (JMSException e) {
            LOG.warn("prepare of: " + x + " failed with: " + e, e);
          synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
              List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
View Full Code Here

        public PrepareReadonlyTransactionAction(TransactionInfo info) {
            super(info);
        }

        public void onResponse(Command command) {
            IntegerResponse response = (IntegerResponse) command;
            if (XAResource.XA_RDONLY == response.getResult()) {
                // all done, no commit or rollback from TM
                super.onResponse(command);
            }
        }
View Full Code Here

        try {
            TransactionInfo info = new TransactionInfo(getConnectionId(), x, TransactionInfo.PREPARE);

            // Find out if the server wants to commit or rollback.
            IntegerResponse response = (IntegerResponse)syncSendPacketWithInterruptionHandling(info);
            if (XAResource.XA_RDONLY == response.getResult()) {
                // transaction stops now, may be syncs that need a callback
            synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
                  List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
                  if (l != null && !l.isEmpty()) {
                      if (LOG.isDebugEnabled()) {
                          LOG.debug("firing afterCommit callbacks on XA_RDONLY from prepare: " + xid);
                      }
                      for (TransactionContext ctx : l) {
                          ctx.afterCommit();
                      }
                  }
            }
            }
            return response.getResult();

        } catch (JMSException e) {
            LOG.warn("prepare of: " + x + " failed with: " + e, e);
          synchronized(ENDED_XA_TRANSACTION_CONTEXTS) {
              List<TransactionContext> l = ENDED_XA_TRANSACTION_CONTEXTS.remove(x);
View Full Code Here

        try {
            TransactionInfo info = new TransactionInfo(getConnectionId(), x, TransactionInfo.PREPARE);

            // Find out if the server wants to commit or rollback.
            IntegerResponse response = (IntegerResponse)syncSendPacketWithInterruptionHandling(info);
            return response.getResult();

        } catch (JMSException e) {
            throw toXAException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.command.IntegerResponse

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.