[jboss-remoting-commits] JBoss Remoting SVN: r4619 - remoting3/trunk/protocol/multiplex/src/main/java/org/jboss/remoting/protocol/multiplex.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Oct 22 22:06:03 EDT 2008


Author: david.lloyd at jboss.com
Date: 2008-10-22 22:06:03 -0400 (Wed, 22 Oct 2008)
New Revision: 4619

Modified:
   remoting3/trunk/protocol/multiplex/src/main/java/org/jboss/remoting/protocol/multiplex/MultiplexConfiguration.java
Log:
fix incomplete javadoc commit

Modified: remoting3/trunk/protocol/multiplex/src/main/java/org/jboss/remoting/protocol/multiplex/MultiplexConfiguration.java
===================================================================
--- remoting3/trunk/protocol/multiplex/src/main/java/org/jboss/remoting/protocol/multiplex/MultiplexConfiguration.java	2008-10-23 02:04:40 UTC (rev 4618)
+++ remoting3/trunk/protocol/multiplex/src/main/java/org/jboss/remoting/protocol/multiplex/MultiplexConfiguration.java	2008-10-23 02:06:03 UTC (rev 4619)
@@ -99,21 +99,37 @@
     }
 
     /**
-     * Get the executor to use to execute
-     * @return
+     * Get the executor to use to execute handlers.
+     *
+     * @return the executor
      */
     public Executor getExecutor() {
         return executor;
     }
 
+    /**
+     * Set the executor to use to execute handlers.
+     *
+     * @param executor the executor
+     */
     public void setExecutor(final Executor executor) {
         this.executor = executor;
     }
 
+    /**
+     * Get the buffer allocator to use for outbound messages on this connection.
+     *
+     * @return the allocator
+     */
     public BufferAllocator<ByteBuffer> getAllocator() {
         return allocator;
     }
 
+    /**
+     * Set the buffer allocator to use for outbound messages on this connection.
+     *
+     * @param allocator the allocator
+     */
     public void setAllocator(final BufferAllocator<ByteBuffer> allocator) {
         this.allocator = allocator;
     }




More information about the jboss-remoting-commits mailing list