1 /*2 * Copyright (c) 2005 Your Corporation. All Rights Reserved.3 */4 5 package org.jfox.ioc.connector;6 7 /**8 * 定义支持Cluster的容器接口,具体的如EJBContainer,9 * 如果要支持 Cluster,就必须实现该接口10 *11 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>12 */13 14 public interface ClusterableContainer extends Container {15 16 /**17 * 从集群中的其它节点复制一个对象,在本地的缓存池中缓存18 * @param invocation19 */20 void syncInvocation(Invocation invocation);21 22 }23