Package org.firebirdsql.jdbc
Interface FBObjectListener.FetcherListener
- 
- All Known Implementing Classes:
- FBObjectListener.NoActionFetcherListener,- FBResultSet
 - Enclosing interface:
- FBObjectListener
 
 public static interface FBObjectListener.FetcherListener
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidallRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher)Notify listener that underlying fetcher fetched all rows.voidfetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher)Notify listener that underlying fetcher is closed.voidrowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, RowValue newRow)Notify listener that underlying row was changed.
 
- 
- 
- 
Method Detail- 
fetcherClosedvoid fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher) throws java.sql.SQLExceptionNotify listener that underlying fetcher is closed.- Parameters:
- fetcher- fetcher that was closed.
- Throws:
- java.sql.SQLException
 
 - 
allRowsFetchedvoid allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher) throws java.sql.SQLExceptionNotify listener that underlying fetcher fetched all rows.- Parameters:
- fetcher- fetcher that fetched all rows.
- Throws:
- java.sql.SQLException
 
 - 
rowChangedvoid rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, RowValue newRow) throws java.sql.SQLExceptionNotify listener that underlying row was changed.- Parameters:
- fetcher- instance of- FBFetcherthat caused this event.
- newRow- new row.
- Throws:
- java.sql.SQLException
 
 
- 
 
-