Java Code Examples for javax.resource.spi.ConnectionEvent#LOCAL_TRANSACTION_ROLLEDBACK
The following examples show how to use
javax.resource.spi.ConnectionEvent#LOCAL_TRANSACTION_ROLLEDBACK .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ManagedConnectionImpl.java From cxf with Apache License 2.0 | 6 votes |
private void sendEventToListener(ConnectionEventListener listener, ConnectionEvent coEvent) { if (coEvent.getId() == ConnectionEvent.CONNECTION_CLOSED) { listener.connectionClosed(coEvent); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_COMMITTED) { listener.localTransactionCommitted(coEvent); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK) { listener.localTransactionRolledback(coEvent); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_STARTED) { listener.localTransactionStarted(coEvent); } if (coEvent.getId() == ConnectionEvent.CONNECTION_ERROR_OCCURRED) { listener.connectionErrorOccurred(coEvent); } }
Example 2
Source File: AbstractManagedConnectionImpl.java From cxf with Apache License 2.0 | 6 votes |
protected void sendEventToListener(ConnectionEvent coEvent, ConnectionEventListener listener) { if (coEvent.getId() == ConnectionEvent.CONNECTION_CLOSED) { listener.connectionClosed(coEvent); LOG.log(Level.FINE, "CONNECTION_CLOSED_EVENT_FIRED", new Object[] {listener}); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_COMMITTED) { listener.localTransactionCommitted(coEvent); LOG.log(Level.FINE, "LOCAL_TX_COMMITTED_EVENT_FIRED", new Object[] {listener}); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK) { listener.localTransactionRolledback(coEvent); LOG.log(Level.FINE, "LOCAL_TX_ROLLEDBACK_EVENT_FIRED", new Object[] {listener}); } if (coEvent.getId() == ConnectionEvent.LOCAL_TRANSACTION_STARTED) { listener.localTransactionStarted(coEvent); LOG.log(Level.FINE, "LOCAL_TX_STARTED_EVENT_FIRED", new Object[] {listener}); } if (coEvent.getId() == ConnectionEvent.CONNECTION_ERROR_OCCURRED) { listener.connectionErrorOccurred(coEvent); LOG.log(Level.FINE, "CTX_ERROR_OCURRED_EVENT_FIRED", new Object[] {listener}); } }
Example 3
Source File: PerfManagedConnection.java From ironjacamar with Eclipse Public License 1.0 | 6 votes |
/** * {@inheritDoc} */ public void rollback() throws ResourceException { if (txCommitDuration > 0) { try { Thread.sleep(txCommitDuration); } catch (Exception e) { // Ignore } } ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK); for (ConnectionEventListener cel : listeners) { cel.localTransactionRolledback(ce); } }
Example 4
Source File: ActiveMQRAManagedConnection.java From activemq-artemis with Apache License 2.0 | 5 votes |
/** * Send an event. * * @param event The event to send. */ protected void sendEvent(final ConnectionEvent event) { if (logger.isTraceEnabled()) { ActiveMQRALogger.LOGGER.trace("sendEvent(" + event + ")"); } int type = event.getId(); // convert to an array to avoid concurrent modification exceptions ConnectionEventListener[] list = eventListeners.toArray(new ConnectionEventListener[eventListeners.size()]); for (ConnectionEventListener l : list) { switch (type) { case ConnectionEvent.CONNECTION_CLOSED: l.connectionClosed(event); break; case ConnectionEvent.LOCAL_TRANSACTION_STARTED: l.localTransactionStarted(event); break; case ConnectionEvent.LOCAL_TRANSACTION_COMMITTED: l.localTransactionCommitted(event); break; case ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK: l.localTransactionRolledback(event); break; case ConnectionEvent.CONNECTION_ERROR_OCCURRED: l.connectionErrorOccurred(event); break; default: throw new IllegalArgumentException("Illegal eventType: " + type); } } }
Example 5
Source File: ManagedConnectionImplTest.java From cxf with Apache License 2.0 | 5 votes |
@Test public void testSendEventTxRolledBack() throws Exception { ConnectionEvent event = new ConnectionEvent(mc, ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK); ConnectionEventListener listener = EasyMock.createMock(ConnectionEventListener.class); mc.addConnectionEventListener(listener); EasyMock.reset(listener); listener.localTransactionRolledback(EasyMock.isA(ConnectionEvent.class)); EasyMock.expectLastCall(); EasyMock.replay(listener); mc.sendEvent(event); }
Example 6
Source File: TxLogManagedConnection.java From ironjacamar with Eclipse Public License 1.0 | 5 votes |
/** * {@inheritDoc} */ public void rollback() throws ResourceException { log.trace("rollback()"); addTxState(TX_LOCAL_ROLLBACK); ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK); for (ConnectionEventListener cel : listeners) { cel.localTransactionRolledback(ce); } }