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.ioc.ext;8 9 10 11 12 /**13 * 可以集群的组件,会调用每个方法的时候进行状态复制14 *15 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>16 */17 18 public interface ClusterComponent extends InterceptableComponent {19 20 }21