Interface JMSBridgeMBean
-
- All Superinterfaces:
JMSBridgeDefinitionMBean
- All Known Implementing Classes:
JMSBridge
public interface JMSBridgeMBean extends JMSBridgeDefinitionMBean
JMX interface for a JMSBridge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetFailures()Get the number of bridge failureslonggetForwardedMessages()Get the number of forwarded messagesStringgetName()Get the bridge namebooleanisStarted()Test if the bridge is startedvoidresetStats()Reset bridge statisticsvoidstart()Start the JMS bridgevoidstop()Stop the JMS bridge-
Methods inherited from interface net.timewalker.ffmq4.cluster.bridge.JMSBridgeDefinitionMBean
getConsumerAcknowledgeMode, getProducerDeliveryMode, getRetryInterval, isCommitSourceFirst, isConsumerTransacted, isProducerTransacted
-
-
-
-
Method Detail
-
getName
String getName()
Get the bridge name
-
start
void start()
Start the JMS bridge
-
stop
void stop()
Stop the JMS bridge
-
isStarted
boolean isStarted()
Test if the bridge is started
-
getForwardedMessages
long getForwardedMessages()
Get the number of forwarded messages
-
getFailures
long getFailures()
Get the number of bridge failures
-
resetStats
void resetStats()
Reset bridge statistics
-
-