1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 7 package org.jfox.pool.thread;8 9 /**10 * 可以交给 object pool 来运行的对象11 *12 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>13 */14 15 16 public interface Threadable {17 /**18 * the method that the thread will do19 */20 void run();21 22 }23