connectionleaklistener.java

来自「Contents * Introduction * Installa」· Java 代码 · 共 27 行

JAVA
27
字号
/* * @(#) ConnectionLeakListener 1.0 02/08/01 */package org.smartlib.pool.core;/** * This interface defines the behavior of the class listenening to connection  * leak events. A class requiring to listen to connection leaks must implement  * this interface. *  * @author	Sachin Shekar Shetty   * @version 1.0, 02/08/01 */public interface ConnectionLeakListener {	/**	 * This method is called when a connection leak is detected.	 * When ever a connection is blocked by the consumer for more than	 * a then the specified time, a connection leak is said to have occurred. 	 */	public void connectionTimeOut(ConnectionLeakEvent cle);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?