KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public interface MultiPoolMonitor {
11
12     /**
13      * This method returns the pool monitors that this MultiPool is associated with
14      */

15     public PoolMonitor[] getPoolMonitors();
16
17     /**
18      * This method returns the name of the pool
19      */

20     public String JavaDoc getName();
21
22     
23
24 }
25
Popular Tags