Package org.firebirdsql.jdbc
Class FBObjectListener.NoActionBlobListener
- java.lang.Object
-
- org.firebirdsql.jdbc.FBObjectListener.NoActionBlobListener
-
- All Implemented Interfaces:
FBObjectListener.BlobListener
- Enclosing interface:
- FBObjectListener
public static final class FBObjectListener.NoActionBlobListener extends java.lang.Object implements FBObjectListener.BlobListener
Implementation ofFBObjectListener.BlobListener
that implements all methods as empty methods.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
executionCompleted(FirebirdBlob blob)
Notify listener that execution of some BLOB operation had been completed.void
executionStarted(FirebirdBlob blob)
Notify listener that execution of some BLOB operation had been started.static FBObjectListener.BlobListener
instance()
-
-
-
Method Detail
-
instance
public static FBObjectListener.BlobListener instance()
-
executionStarted
public void executionStarted(FirebirdBlob blob) throws java.sql.SQLException
Description copied from interface:FBObjectListener.BlobListener
Notify listener that execution of some BLOB operation had been started.- Specified by:
executionStarted
in interfaceFBObjectListener.BlobListener
- Parameters:
blob
- instance ofFirebirdBlob
that caused this event.- Throws:
java.sql.SQLException
- if something went wrong.
-
executionCompleted
public void executionCompleted(FirebirdBlob blob) throws java.sql.SQLException
Description copied from interface:FBObjectListener.BlobListener
Notify listener that execution of some BLOB operation had been completed.- Specified by:
executionCompleted
in interfaceFBObjectListener.BlobListener
- Parameters:
blob
- instance ofFirebirdBlob
that caused this event.- Throws:
java.sql.SQLException
- if something went wrong.
-
-