KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > smartlib > pool > core > LeakDetectorImpl


1 package org.smartlib.pool.core;
2
3 import org.smartlib.pool.core.ConnectionLeakListener;
4
5 /**
6  * Created by IntelliJ IDEA.
7  * User: kerneldebugger
8  * Date: Oct 2, 2005
9  * Time: 3:02:37 PM
10  * To change this template use File | Settings | File Templates.
11  */

12 public class LeakDetectorImpl implements ConnectionLeakListener {
13     public void connectionTimeOut(ConnectionLeakEvent cle) {
14         System.out.println("Leak Detected for a user: " + cle.getOwner());
15     }
16 }
17
Popular Tags