KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > replication > ReplicatedInvoker


1 package org.sapia.ubik.rmi.replication;
2
3 import java.io.Serializable JavaDoc;
4
5 import java.util.Set JavaDoc;
6
7
8 /**
9  * @author Yanick Duchesne
10  * <dl>
11  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
12  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
13  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
14  * </dl>
15  */

16 public interface ReplicatedInvoker extends Serializable JavaDoc {
17   public Object JavaDoc invoke(String JavaDoc methodName, Class JavaDoc[] sig, Object JavaDoc[] params)
18     throws Throwable JavaDoc;
19
20   /**
21    * @return the <code>Set</code> of <code>ServerAddress</code>es corresponding to the siblings
22    * of the server in which this instance is executed.
23    */

24   public Set JavaDoc getSiblings();
25 }
26
Popular Tags