Module org.firebirdsql.jaybird
Package org.firebirdsql.jdbc
Interface FBObjectListener.ResultSetListener
- All Known Implementing Classes:
FBObjectListener.NoActionResultSetListener
- Enclosing class:
- FBObjectListener
@NullMarked
public static interface FBObjectListener.ResultSetListener
Listener for the events generated by the result set.
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
executionCompleted
(FirebirdRowUpdater updater, boolean success) Notify listener that execution of some row updating operation is completed.default void
executionStarted
(FirebirdRowUpdater updater) Notify listener that execution of some row updating operation started.default void
Notify listener that result set was closed.
-
Method Details
-
resultSetClosed
Notify listener that result set was closed.The default implementation does nothing.
- Parameters:
rs
- result set that was closed- Throws:
SQLException
-
executionStarted
Notify listener that execution of some row updating operation started.The default implementation does nothing.
- Parameters:
updater
- instance ofFirebirdRowUpdater
- Throws:
SQLException
-
executionCompleted
Notify listener that execution of some row updating operation is completed.The default implementation does nothing.
- Parameters:
updater
- instance ofFirebirdRowUpdater
- Throws:
SQLException
-