[jboss-cvs] JBossAS SVN: r69397 - projects/cluster/ha-server-api/trunk/src/main/java/org/jboss/ha/framework/interfaces.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 28 15:06:26 EST 2008


Author: bstansberry at jboss.com
Date: 2008-01-28 15:06:26 -0500 (Mon, 28 Jan 2008)
New Revision: 69397

Modified:
   projects/cluster/ha-server-api/trunk/src/main/java/org/jboss/ha/framework/interfaces/HAPartition.java
Log:
Javadoc updates

Modified: projects/cluster/ha-server-api/trunk/src/main/java/org/jboss/ha/framework/interfaces/HAPartition.java
===================================================================
--- projects/cluster/ha-server-api/trunk/src/main/java/org/jboss/ha/framework/interfaces/HAPartition.java	2008-01-28 20:05:41 UTC (rev 69396)
+++ projects/cluster/ha-server-api/trunk/src/main/java/org/jboss/ha/framework/interfaces/HAPartition.java	2008-01-28 20:06:26 UTC (rev 69397)
@@ -101,7 +101,8 @@
     * does not need to implement any specific interface: the call is handled
     * dynamically through reflection.
     * In cases where the client is using a scoped classloader, the client will need to provide a 
-    * reference to the classloader if the service's RPC calls use custom parameter or response object types. 
+    * reference to the classloader if the service's RPC calls use custom parameter or response object types.
+    * The classloader will be used to deserialize the RPC and/or response. 
     * @param serviceName Name of the subscribing service (demultiplexing key)
     * @param handler object to be called when receiving a RPC for its key.
     * @param classloader ClassLoader to be used when marshalling and unmarshalling RPC requests and responses.
@@ -149,8 +150,8 @@
          Object[] args, Class[] types, boolean excludeSelf) throws Exception;
 
    /**
-    * Calls method on Cluster coordinator node only.  The cluster coordinator node is the first node to join the
-    * cluster or the first node in the current cluster view.
+    * Calls method on Cluster coordinator node only.  The cluster coordinator 
+    * node is the first node in the current cluster view.
     * @param serviceName Name of the target service name on which calls are de-multiplexed
     * @param methodName name of the Java method to be called on remote services
     * @param args array of Java Object representing the set of parameters to be
@@ -165,7 +166,7 @@
              Object[] args, Class[] types, boolean excludeSelf) throws Exception;
 
     /**
-     * Calls method synchrounously on target node only.
+     * Calls method synchronously on target node only.
      * @param serviceName Name of the target service name on which calls are de-multiplexed
      * @param methodName name of the Java method to be called on remote services
      * @param args array of Java Object representing the set of parameters to be




More information about the jboss-cvs-commits mailing list