Package org.firebirdsql.jdbc
Interface FBObjectListener.BlobListener
- 
- All Known Implementing Classes:
- FBObjectListener.NoActionBlobListener,- InternalTransactionCoordinator,- InternalTransactionCoordinator.AbstractTransactionCoordinator
 - Enclosing interface:
- FBObjectListener
 
 public static interface FBObjectListener.BlobListenerListener for the events generated by BLOBs.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecutionCompleted(FirebirdBlob blob)Notify listener that execution of some BLOB operation had been completed.voidexecutionStarted(FirebirdBlob blob)Notify listener that execution of some BLOB operation had been started.
 
- 
- 
- 
Method Detail- 
executionStartedvoid executionStarted(FirebirdBlob blob) throws java.sql.SQLException Notify listener that execution of some BLOB operation had been started.- Parameters:
- blob- instance of- FirebirdBlobthat caused this event.
- Throws:
- java.sql.SQLException- if something went wrong.
 
 - 
executionCompletedvoid executionCompleted(FirebirdBlob blob) throws java.sql.SQLException Notify listener that execution of some BLOB operation had been completed.- Parameters:
- blob- instance of- FirebirdBlobthat caused this event.
- Throws:
- java.sql.SQLException- if something went wrong.
 
 
- 
 
-