org.firebirdsql.pool
Interface PooledConnectionEventListener
- All Superinterfaces:
- javax.sql.ConnectionEventListener, java.util.EventListener
- All Known Implementing Classes:
- AbstractFBConnectionPoolDataSource, AbstractDriverConnectionPoolDataSource
- public interface PooledConnectionEventListener
- extends javax.sql.ConnectionEventListener
Event listener that is notified about the events in the PooledConnection
.
- Author:
- Roman Rokytskyy
Methods inherited from interface javax.sql.ConnectionEventListener |
connectionClosed, connectionErrorOccurred |
physicalConnectionClosed
public void physicalConnectionClosed(javax.sql.ConnectionEvent event)
- Notify listener that
PooledConnection.close()
method
is directly invoked by the application.
- Parameters:
event
- instance of ConnectionEvent
containing the instance
of PooledConnection
that generated this event.
physicalConnectionDeallocated
public void physicalConnectionDeallocated(javax.sql.ConnectionEvent event)
- Notify listener that
PooledObject.deallocate()
method
is invoked by the application.
- Parameters:
event
- instance of ConnectionEvent
containing the instance
of PooledObject
that generated this event.
Copyright © 2001 David Jencks and other authors. All rights reserved.