[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/sslmultiplex ...
Tom Elrod
tom.elrod at jboss.com
Wed Sep 20 00:22:25 EDT 2006
User: telrod
Date: 06/09/20 00:22:25
Modified: src/main/org/jboss/remoting/transport/sslmultiplex
SSLMultiplexClientInvoker.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.4 +15 -11 JBossRemoting/src/main/org/jboss/remoting/transport/sslmultiplex/SSLMultiplexClientInvoker.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SSLMultiplexClientInvoker.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/sslmultiplex/SSLMultiplexClientInvoker.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- SSLMultiplexClientInvoker.java 1 Aug 2006 06:30:57 -0000 1.3
+++ SSLMultiplexClientInvoker.java 20 Sep 2006 04:22:25 -0000 1.4
@@ -25,6 +25,7 @@
*/
package org.jboss.remoting.transport.sslmultiplex;
+import org.jboss.logging.Logger;
import org.jboss.remoting.InvokerLocator;
import org.jboss.remoting.security.SSLSocketBuilder;
import org.jboss.remoting.transport.multiplex.Multiplex;
@@ -42,7 +43,7 @@
* For more information, see Remoting documentation on labs.jboss.org.
*
* @author <a href="mailto:ron.sigal at jboss.com">Ron Sigal</a>
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
* <p>
* Copyright (c) 2006
* </p>
@@ -50,6 +51,9 @@
public class SSLMultiplexClientInvoker extends MultiplexClientInvoker
{
+ private static final Logger log = Logger.getLogger(SSLMultiplexClientInvoker.class);
+ private static final boolean isTraceEnabled = log.isTraceEnabled();
+
public SSLMultiplexClientInvoker(InvokerLocator locator) throws IOException
{
More information about the jboss-cvs-commits
mailing list