[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...
Ron Sigal
ron_sigal at yahoo.com
Tue Jan 16 21:55:03 EST 2007
User: rsigal
Date: 07/01/16 21:55:03
Modified: src/main/org/jboss/remoting AbstractInvoker.java
Log:
JBREM-298: Created distinction between client and server socket creation listeners.
Revision Changes Path
1.18 +2 -2 JBossRemoting/src/main/org/jboss/remoting/AbstractInvoker.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: AbstractInvoker.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/AbstractInvoker.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- AbstractInvoker.java 16 Jan 2007 08:02:32 -0000 1.17
+++ AbstractInvoker.java 17 Jan 2007 02:55:03 -0000 1.18
@@ -51,7 +51,7 @@
*
* @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
* @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
- * @version $Revision: 1.17 $
+ * @version $Revision: 1.18 $
*/
public abstract class AbstractInvoker implements Invoker
{
@@ -318,7 +318,7 @@
if (config == null)
return socketFactory;
- Object o = config.get(Remoting.SOCKET_CREATION_LISTENER);
+ Object o = config.get(Remoting.SOCKET_CREATION_CLIENT_LISTENER);
if (o != null && o instanceof SocketCreationListener)
{
SocketCreationListener listener = (SocketCreationListener) o;
More information about the jboss-cvs-commits
mailing list