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 Summary
All 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
-
instance
public static FBObjectListener.FetcherListener instance()
-
fetcherClosed
public void fetcherClosed(org.firebirdsql.jdbc.FBFetcher fetcher)
Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying fetcher is closed.- Specified by:
fetcherClosedin interfaceFBObjectListener.FetcherListener- Parameters:
fetcher- fetcher that was closed.
-
allRowsFetched
public void allRowsFetched(org.firebirdsql.jdbc.FBFetcher fetcher)
Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying fetcher fetched all rows.- Specified by:
allRowsFetchedin interfaceFBObjectListener.FetcherListener- Parameters:
fetcher- fetcher that fetched all rows.
-
rowChanged
public void rowChanged(org.firebirdsql.jdbc.FBFetcher fetcher, RowValue newRow)Description copied from interface:FBObjectListener.FetcherListenerNotify listener that underlying row was changed.- Specified by:
rowChangedin interfaceFBObjectListener.FetcherListener- Parameters:
fetcher- instance ofFBFetcherthat caused this event.newRow- new row.
-
-