01: package org.smartlib.pool.core;
02:
03: import org.smartlib.pool.core.ConnectionLeakListener;
04:
05: /**
06: * Created by IntelliJ IDEA.
07: * User: kerneldebugger
08: * Date: Oct 2, 2005
09: * 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: "
15: + cle.getOwner());
16: }
17: }
|