| |
|
| javax.resource.spi.ConnectionEventListener
ConnectionEventListener | public interface ConnectionEventListener extends EventListener(Code) | | The ConnectionEventListener interface provides for a callback mechanism to
enable objects to listen for events of the ConnectionEvent class.
An Application server uses these events to manage its connection pools.
|
connectionClosed | void connectionClosed(ConnectionEvent event)(Code) | | Notifies the listener that a connection has been closed
Parameters: event - the closed event |
connectionErrorOccurred | void connectionErrorOccurred(ConnectionEvent event)(Code) | | Connection error has occurred
Parameters: the - connection error event |
localTransactionCommitted | void localTransactionCommitted(ConnectionEvent event)(Code) | | Local transaction has been committed
Parameters: event - the local transaction committed event |
localTransactionRolledback | void localTransactionRolledback(ConnectionEvent event)(Code) | | Local transaction has been rolled back
Parameters: the - local transaction rolled back event |
localTransactionStarted | void localTransactionStarted(ConnectionEvent event)(Code) | | Local transaction has been started
Parameters: event - the local transaction started event |
|
|
|