Package org.firebirdsql.gds.ng.monitor
Interface OperationAware
- 
 public interface OperationAwareAllows monitoring of driver operations like the execution of statements.The notification of startOperation(Operation)andendOperation(Operation)occurs on the thread performing the operation. Implementations ofOperationAwareshould complete these methods as quick as possible and prevent any blocking operations to avoid excessive performance degradation of the driver.Note: This is an experimental feature. The implementation or API may be removed or changed at any time. - Since:
- 4.0
- Author:
- Vasiliy Yashkov
- See Also:
- OperationMonitor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendOperation(Operation operation)End of operation.voidstartOperation(Operation operation)Start of operation.
 
-