Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 29 30 package org.objectweb.jonas_jms; 31 32 33 36 public interface JmsJmxManagement { 37 41 public int getCurrentNumberOfJmsConnectionFactory(); 42 43 47 public int getCurrentNumberOfJmsTopicConnectionFactory(); 48 49 53 public int getCurrentNumberOfJmsQueueConnectionFactory(); 54 55 59 public int getCurrentNumberOfJmsTopicDestination(); 60 61 65 public int getCurrentNumberOfJmsQueueDestination(); 66 67 73 public String removeJmsDestination(String jndiName) throws Exception ; 74 75 79 public String getDefaultConnectionFactoryName(); 80 81 85 public String getDefaultQueueConnectionFactoryName(); 86 87 88 92 public String getDefaultTopicConnectionFactoryName(); 93 94 96 102 public String getConnectionFactoryMode(String jndiName) throws Exception ; 103 104 110 public int getPendingMessages(String jndiName) throws Exception ; 111 112 118 public int getPendingRequests(String jndiName) throws Exception ; 119 120 126 public int getSubscriptions(String jndiName) throws Exception ; 127 } 128 129
| Popular Tags
|