InvokerProxyHA.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.invocation; import java.util.ArrayList; /** * <description> * * @see <related> * * @author <a href="mailto:sacha.labourey@cogito-info.ch">Sacha Labourey</a>. * @version $Revision: 1.2 $ * * <p><b>Revisions:</b> * * <p><b>January 12, 2003 Sacha Labourey:</b> * <ul> * <li> First implementation </li> * </ul> */ public interface InvokerProxyHA { public void updateClusterInfo (ArrayList targets, long viewId); }
InvokerProxyHA.java |