All Packages Class Hierarchy This Package Previous Next Index
Interface org.xmlmiddleware.db.SPStatementEventSource
- public interface SPStatementEventSource
Interface for methods to add and remove statement event listeners.
This interface is roughly parallel to javax.sql.PooledConnection.
- Version:
- 2.0
- Author:
- Sean Walter, 2001
-
addStatementEventListener(SPStatementEventListener)
- Add an event listener to receive notification of events on this
Statement.
-
removeStatementEventListener(SPStatementEventListener)
- Stop notification to an event listener.
addStatementEventListener
public abstract void addStatementEventListener(SPStatementEventListener listener)
- Add an event listener to receive notification of events on this
Statement.
- Parameters:
- listener - Object to recieive notification.
removeStatementEventListener
public abstract void removeStatementEventListener(SPStatementEventListener listener)
- Stop notification to an event listener.
- Parameters:
- listener - Object to stop receiving notification.
All Packages Class Hierarchy This Package Previous Next Index