Package org.hibernate.resource.jdbc.spi
Interface JdbcObserver
-
- All Known Implementing Classes:
JdbcObserverImpl
@Deprecated public interface JdbcObserver
Deprecated.It is no longer possible to plug custom implementations of this SPI. It will be removed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
jdbcConnectionAcquisitionEnd(Connection connection)
Deprecated.void
jdbcConnectionAcquisitionStart()
Deprecated.void
jdbcConnectionReleaseEnd()
Deprecated.void
jdbcConnectionReleaseStart()
Deprecated.void
jdbcExecuteBatchEnd()
Deprecated.void
jdbcExecuteBatchStart()
Deprecated.void
jdbcExecuteStatementEnd()
Deprecated.void
jdbcExecuteStatementStart()
Deprecated.void
jdbcPrepareStatementEnd()
Deprecated.void
jdbcPrepareStatementStart()
Deprecated.default void
jdbcReleaseRegistryResourcesEnd()
Deprecated.default void
jdbcReleaseRegistryResourcesStart()
Deprecated.
-
-
-
Method Detail
-
jdbcConnectionAcquisitionStart
void jdbcConnectionAcquisitionStart()
Deprecated.
-
jdbcConnectionAcquisitionEnd
void jdbcConnectionAcquisitionEnd(Connection connection)
Deprecated.
-
jdbcConnectionReleaseStart
void jdbcConnectionReleaseStart()
Deprecated.
-
jdbcConnectionReleaseEnd
void jdbcConnectionReleaseEnd()
Deprecated.
-
jdbcPrepareStatementStart
void jdbcPrepareStatementStart()
Deprecated.
-
jdbcPrepareStatementEnd
void jdbcPrepareStatementEnd()
Deprecated.
-
jdbcExecuteStatementStart
void jdbcExecuteStatementStart()
Deprecated.
-
jdbcExecuteStatementEnd
void jdbcExecuteStatementEnd()
Deprecated.
-
jdbcExecuteBatchStart
void jdbcExecuteBatchStart()
Deprecated.
-
jdbcExecuteBatchEnd
void jdbcExecuteBatchEnd()
Deprecated.
-
jdbcReleaseRegistryResourcesStart
default void jdbcReleaseRegistryResourcesStart()
Deprecated.
-
jdbcReleaseRegistryResourcesEnd
default void jdbcReleaseRegistryResourcesEnd()
Deprecated.
-
-