public interface ServiceListener
| Modifier and Type | Method and Description | 
|---|---|
| void | detached(FbService service)Called when the  serviceconnection has been detached | 
| void | detaching(FbService service)Called before the  servicewill be detached. | 
| void | warningReceived(FbService service,
               java.sql.SQLWarning warning)Called when a warning was received for the  serviceconnection. | 
void detaching(FbService service)
service will be detached.
 This event is intended for cleanup action, implementer should take care that no exceptions are thrown from this method.
service - The service object that is detachingvoid detached(FbService service)
service connection has been detachedservice - The database object that was detachedvoid warningReceived(FbService service, java.sql.SQLWarning warning)
service connection.
 In implementation it is possible that some warnings are not sent to listeners on the database, but only to listeners on specific connection derived objects.
service - service receiving the warningwarning - WarningCopyright © 2001-2025 Jaybird (Firebird JDBC) team. All rights reserved.