You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2004/02/08 19:25:47 UTC

cvs commit: incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport/async AsyncClient.java

djencks     2004/02/08 10:25:47

  Modified:    modules/remoting/src/java/org/apache/geronimo/remoting/transport/async
                        AsyncClient.java
  Log:
  trivial doc fix
  
  Revision  Changes    Path
  1.4       +6 -6      incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport/async/AsyncClient.java
  
  Index: AsyncClient.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/remoting/src/java/org/apache/geronimo/remoting/transport/async/AsyncClient.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AsyncClient.java	23 Nov 2003 10:56:35 -0000	1.3
  +++ AsyncClient.java	8 Feb 2004 18:25:46 -0000	1.4
  @@ -67,15 +67,15 @@
   import org.apache.geronimo.remoting.transport.TransportException;
   
   /**
  - * AsyncClientInvoker uses sockets to remotely connect to the 
  - * a remote AsyncServerInvoker.  Requests are sent asynchronously 
  + * AsyncClientInvoker uses sockets to remotely connect to the
  + * a remote AsyncServerInvoker.  Requests are sent asynchronously
    * to allow more concurrent requests to be sent to the server
    * while using fewer sockets.  This is also known as the 'async'
    * protocol.
  - * 
  + *
    * TODO:
    * If you are running on Java 1.4, this transport
  - * transport will take advantage of the NIO 
  + * transport will take advantage of the NIO
    * classes to further reduce the resources used on the server.
    *
    * @version $Revision$ $Date$
  @@ -85,7 +85,7 @@
       static final Log log = LogFactory.getLog(AsyncClient.class);
   
       /**
  -     * @see org.apache.j2ee.remoting.transport.TransportClient#sendRequest(org.apache.j2ee.remoting.URI, byte[])
  +     * @see org.apache.geronimo.remoting.transport.TransportClient#sendRequest(org.apache.geronimo.remoting.URI, byte[])
        */
       public Msg sendRequest(URI to, Msg request) throws TransportException {
           AbstractServer server = Registry.instance.getServerForClientRequest();