hammant 2003/09/07 18:01:29
Modified: client/impl/src/java/org/apache/altrmi/client/impl/socket
SocketCustomStreamHostContext.java
Log:
corrected params
Revision Changes Path
1.2 +6 -9
incubator-altrmi/client/impl/src/java/org/apache/altrmi/client/impl/socket/SocketCustomStreamHostContext.java
Index: SocketCustomStreamHostContext.java
===================================================================
RCS file:
/home/cvs/incubator-altrmi/client/impl/src/java/org/apache/altrmi/client/impl/socket/SocketCustomStreamHostContext.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SocketCustomStreamHostContext.java 28 Aug 2003 18:05:55 -0000
1.1
+++ SocketCustomStreamHostContext.java 8 Sep 2003 01:01:29 -0000
1.2
@@ -106,19 +106,16 @@
{
/**
*
- * @param threadPool
- * @param clientMonitor
- * @param connectionPinger
* @param host
* @param port
* @throws ConnectionException
*/
- public WithCurrentClassLoader(ThreadPool threadPool, ClientMonitor
clientMonitor, ConnectionPinger connectionPinger, String host, int port) throws
ConnectionException
+ public WithCurrentClassLoader(String host, int port, ClassLoader
classLoader) throws ConnectionException
{
- super(threadPool,
- clientMonitor,
- connectionPinger,
- SocketCustomStreamHostContext.class.getClassLoader(),
+ super(new DefaultThreadPool(),
+ new DumbClientMonitor(),
+ new NeverConnectionPinger(),
+ classLoader,
host, port);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]