User: chirino
Date: 01/09/26 20:27:43
Modified: src/main/org/jboss/mq/il/jvm JVMServerILService.java
Log:
Due to popular demand the PingThread is now shared by all the connections
in one VM. And the the ping period is configurable at each ConnectionFactory.
Revision Changes Path
1.4 +3 -4 jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java
Index: JVMServerILService.java
===================================================================
RCS file:
/cvsroot/jboss/jbossmq/src/main/org/jboss/mq/il/jvm/JVMServerILService.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- JVMServerILService.java 2001/08/30 02:35:54 1.3
+++ JVMServerILService.java 2001/09/27 03:27:43 1.4
@@ -23,9 +23,10 @@
* @author Hiram Chirino ([EMAIL PROTECTED])
* @author David Maplesden ([EMAIL PROTECTED])
* @created August 16, 2001
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public class JVMServerILService extends org.jboss.mq.il.ServerILJMXService
implements JVMServerILServiceMBean {
+
/**
* Gives this JMX service a name.
*
@@ -54,7 +55,7 @@
* @return The ClientConnectionProperties value
*/
public java.util.Properties getClientConnectionProperties() {
- Properties rc = new Properties();
+ Properties rc = super.getClientConnectionProperties();
rc.setProperty( GenericConnectionFactory.CLIENT_IL_SERVICE_KEY,
"org.jboss.mq.il.jvm.JVMClientILService" );
rc.setProperty( GenericConnectionFactory.SERVER_IL_FACTORY_KEY,
"org.jboss.mq.il.jvm.JVMServerILFactory" );
return rc;
@@ -67,9 +68,7 @@
*/
public void startService()
throws Exception {
-
bindJNDIReferences();
-
}
/**
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development