[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/multiplex ...

Tom Elrod tom.elrod at jboss.com
Wed Sep 20 00:22:24 EDT 2006


  User: telrod  
  Date: 06/09/20 00:22:24

  Modified:    src/main/org/jboss/remoting/transport/multiplex 
                        MultiplexClientInvoker.java
  Log:
  JBREM-596 - fix for leasing problem when have multiple clients using same client invoker.  Basically moved all lease managment for clients into the client invokers themselves.
  
  Revision  Changes    Path
  1.43      +4 -0      JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/MultiplexClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MultiplexClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/MultiplexClientInvoker.java,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -b -r1.42 -r1.43
  --- MultiplexClientInvoker.java	18 Aug 2006 13:50:25 -0000	1.42
  +++ MultiplexClientInvoker.java	20 Sep 2006 04:22:24 -0000	1.43
  @@ -22,6 +22,7 @@
   
   package org.jboss.remoting.transport.multiplex;
   
  +import org.jboss.logging.Logger;
   import org.jboss.remoting.ConnectionFailedException;
   import org.jboss.remoting.InvokerLocator;
   import org.jboss.remoting.marshal.Marshaller;
  @@ -49,6 +50,9 @@
    */
   public class MultiplexClientInvoker extends SocketClientInvoker implements BidirectionalClientInvoker
   {
  +   private static final Logger log = Logger.getLogger(MultiplexClientInvoker.class);
  +   private static final boolean isTraceEnabled = log.isTraceEnabled();
  +   
      private InetAddress connectAddress;
      private String connectHost;
      private int connectPort;
  
  
  



More information about the jboss-cvs-commits mailing list