类 ConnectionObserverAdapter
- java.lang.Object
-
- org.hibernate.engine.jdbc.spi.ConnectionObserverAdapter
-
- 所有已实现的接口:
ConnectionObserver
public class ConnectionObserverAdapter extends Object implements ConnectionObserver
A no-op adapter for ConnectionObserver.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 ConnectionObserverAdapter()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidlogicalConnectionClosed()The logical connection was closed.voidphysicalConnectionObtained(Connection connection)A physical connection was obtained.voidphysicalConnectionReleased()A physical connection was released.voidstatementPrepared()Notification of a statement being prepared
-
-
-
方法详细资料
-
physicalConnectionObtained
public void physicalConnectionObtained(Connection connection)
从接口复制的说明:ConnectionObserverA physical connection was obtained.- 指定者:
physicalConnectionObtained在接口中ConnectionObserver- 参数:
connection- The physical connection just obtained.
-
physicalConnectionReleased
public void physicalConnectionReleased()
从接口复制的说明:ConnectionObserverA physical connection was released.- 指定者:
physicalConnectionReleased在接口中ConnectionObserver
-
logicalConnectionClosed
public void logicalConnectionClosed()
从接口复制的说明:ConnectionObserverThe logical connection was closed.- 指定者:
logicalConnectionClosed在接口中ConnectionObserver
-
statementPrepared
public void statementPrepared()
从接口复制的说明:ConnectionObserverNotification of a statement being prepared- 指定者:
statementPrepared在接口中ConnectionObserver
-
-