KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > resource > connectionmanager > IdleConnectionRemovalSupport


1 package org.jboss.resource.connectionmanager;
2
3 /**
4  * A IdleConnectionRemovalSupport specified contract for a pool that is able
5  * to remove an idle connection.
6  *
7  *
8  * @author <a HREF="weston.price@jboss.com">Weston Price</a>
9  * @version $Revision: 1.1 $
10  */

11 public interface IdleConnectionRemovalSupport
12 {
13    
14    public void removeIdleConnections();
15    
16 }
17
Popular Tags