Package org.firebirdsql.jdbc
Class FBObjectListener.NoActionFetcherListener
- java.lang.Object
- 
- org.firebirdsql.jdbc.FBObjectListener.NoActionFetcherListener
 
- 
- All Implemented Interfaces:
- FBObjectListener.FetcherListener
 - Enclosing interface:
- FBObjectListener
 
 public static final class FBObjectListener.NoActionFetcherListener extends java.lang.Object implements FBObjectListener.FetcherListener Implementation ofFBObjectListener.FetcherListenerthat does nothing.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete 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.static FBObjectListener.FetcherListenerinstance()voidrowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, RowValue newRow)Notify listener that underlying row was changed.
 
- 
- 
- 
Method Detail- 
instancepublic static FBObjectListener.FetcherListener instance() 
 - 
fetcherClosedpublic void fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher) Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying fetcher is closed.- Specified by:
- fetcherClosedin interface- FBObjectListener.FetcherListener
- Parameters:
- fetcher- fetcher that was closed.
 
 - 
allRowsFetchedpublic void allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher) Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying fetcher fetched all rows.- Specified by:
- allRowsFetchedin interface- FBObjectListener.FetcherListener
- Parameters:
- fetcher- fetcher that fetched all rows.
 
 - 
rowChangedpublic void rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, RowValue newRow)Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying row was changed.- Specified by:
- rowChangedin interface- FBObjectListener.FetcherListener
- Parameters:
- fetcher- instance of- FBFetcherthat caused this event.
- newRow- new row.
 
 
- 
 
-