01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.com
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package org.huihoo.jfox.pool.thread;
09:
10: import org.huihoo.jfox.pool.ObjectPoolMBean;
11:
12: /**
13: * 定义池的最大线程数,当达到这个最大数后还有请求到来的话,
14: * 新的请求将放到队列中等待执行,以免产生过多的线程
15: *
16: * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
17: */
18:
19: public interface QueueThreadPoolMBean extends ObjectPoolMBean {
20:
21: }
|