|
Oracle Fusion Middleware Oracle WebLogic Server MBean Javadoc 11g Release 1 (10.3.3) Part Number E13945-03 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface JMSDestinationRuntimeMBean
This class is used for monitoring a WebLogic JMS destination (topic or queue).
This is a type-safe interface for a
WebLogic Server MBean, which you can import into your client
classes and access through
weblogic.management.MBeanHome
. As of 9.0, the
MBeanHome
interface and all type-safe interfaces for
WebLogic Server MBeans are deprecated. Instead, client classes that
interact with WebLogic Server MBeans should use standard JMX design
patterns in which clients use the
javax.management.MBeanServerConnection
interface to
discover MBeans, attributes, and attribute types at runtime. For
more information, see "Developing Manageable Applications with JMX"
on http://www.oracle.com/technology/products/weblogic/index.html.
Method Summary | |
---|---|
void |
createDurableSubscriber(String ClientID,
String subscriptionName,
String selector,
boolean noLocal)
Creates a durable subscriber on the destination with the specified client ID and subscription name. |
long |
getBytesCurrentCount()
The current number of bytes stored in the destination. |
long |
getBytesHighCount()
The peak number of bytes stored in the destination since the last reset. |
long |
getBytesPendingCount()
The number of pending bytes stored in the destination. |
long |
getBytesReceivedCount()
The number of bytes received in this destination since the last reset. |
long |
getBytesThresholdTime()
The amount of time in the threshold condition since the last reset. |
long |
getConsumersCurrentCount()
The current number of consumers accessing this destination. |
long |
getConsumersHighCount()
The peak number of consumers accessing this destination since the last reset. |
long |
getConsumersTotalCount()
The total number of consumers accessing this destination since the last reset. |
String |
getConsumptionPausedState()
The current consumption pause state of the destination. |
CompositeData |
getDestinationInfo()
Returns information about this destination in JMX open data representation. |
String |
getDestinationType()
The destination type, either weblogic.management.configuration.JMSConstants.DESTINATION_TYPE_QUEUE or weblogic.management.configuration.JMSConstants.DESTINATION_TYPE_TOPIC depending upon whether the destination is a queue or topic. |
JMSDurableSubscriberRuntimeMBean[] |
getDurableSubscribers()
An array of durable subscriber run-time MBeans for this destination. |
String |
getInsertionPausedState()
The current insertion pause state of the destination. |
long |
getMessagesCurrentCount()
The current number of messages in the destination. |
long |
getMessagesHighCount()
The peak number of messages in the destination since the last reset. |
long |
getMessagesPendingCount()
The number of pending messages in the destination. |
long |
getMessagesReceivedCount()
The number of messages received in this destination since that reset. |
long |
getMessagesThresholdTime()
The amount of time in the threshold condition since the last reset. |
String |
getProductionPausedState()
The current production pause state of the destination. |
String |
getState()
The operational state of the destination as a String. |
boolean |
isConsumptionPaused()
Indicates the consumption Pause state of the destination. |
boolean |
isInsertionPaused()
Indicates the InsertionPause state of the destination. |
boolean |
isPaused()
Deprecated. 9.0.0.0 Replaced by JMSDestinationRuntimeMBean.isProductionPaused() |
boolean |
isProductionPaused()
Indicates the ProductionPause state of the destination. |
void |
pause()
Deprecated. 9.0.0.0 Replaced by JMSDestinationRuntimeMBean.pauseProduction() |
void |
pauseConsumption()
Pauses the consumption on the destination. |
void |
pauseInsertion()
Pauses the insertion on the destination. |
void |
pauseProduction()
Pauses the production on the destination. |
void |
resume()
Deprecated. 9.0.0.0 Replaced by JMSDestinationRuntimeMBean.resumeProduction() |
void |
resumeConsumption()
Resumes the consumption operations on the destination. |
void |
resumeInsertion()
Resumes the insertion operations on the destination. |
void |
resumeProduction()
Resumes the production operations on the destination. |
Method Detail |
---|
CompositeData getDestinationInfo()
Returns information about this destination in JMX open data representation.
weblogic.jms.extensions.DestinationInfo
void createDurableSubscriber(String ClientID, String subscriptionName, String selector, boolean noLocal) throws InvalidSelectorException, JMSException
Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.
ClientID
- An identifier that uniquely identifies a client
connection.subscriptionName
- The name used to identify this subscription.selector
- Only messages with properties matching the message
selector expression are delivered. A value of null or an empty string
indicates that there is no message selector for the message consumer.noLocal
- If set, inhibits the delivery of messages published by
its own connection.
InvalidSelectorException
- The specified JMS selector is
invalid.
JMSException
- An error occurred while processing the request.JMSDurableSubscriberRuntimeMBean[] getDurableSubscribers()
An array of durable subscriber run-time MBeans for this destination.
long getConsumersCurrentCount()
The current number of consumers accessing this destination.
long getConsumersHighCount()
The peak number of consumers accessing this destination since the last reset.
long getConsumersTotalCount()
The total number of consumers accessing this destination since the last reset.
long getMessagesCurrentCount()
The current number of messages in the destination. This does not include the pending messages.
long getMessagesPendingCount()
The number of pending messages in the destination.
Pending messages are over and above the current number of messages. A pending message is one that has either been sent in a transaction and not committed, or that has been received and not committed or acknowledged.
long getMessagesHighCount()
The peak number of messages in the destination since the last reset.
long getMessagesReceivedCount()
The number of messages received in this destination since that reset.
long getMessagesThresholdTime()
The amount of time in the threshold condition since the last reset.
long getBytesCurrentCount()
The current number of bytes stored in the destination. This does not include the pending bytes.
long getBytesPendingCount()
The number of pending bytes stored in the destination.
Pending bytes are over and above the current number of bytes.
long getBytesHighCount()
The peak number of bytes stored in the destination since the last reset.
long getBytesReceivedCount()
The number of bytes received in this destination since the last reset.
long getBytesThresholdTime()
The amount of time in the threshold condition since the last reset.
String getDestinationType()
The destination type, either weblogic.management.configuration.JMSConstants.DESTINATION_TYPE_QUEUE or weblogic.management.configuration.JMSConstants.DESTINATION_TYPE_TOPIC depending upon whether the destination is a queue or topic.
void pause()
JMSDestinationRuntimeMBean.pauseProduction()
Pauses the destination so that new messages are not accepted.
void resume()
JMSDestinationRuntimeMBean.resumeProduction()
Resumes the destination so that new messages are accepted.
String getState()
The operational state of the destination as a String.
boolean isPaused() throws JMSException
JMSDestinationRuntimeMBean.isProductionPaused()
Indicates whether or not the destination is paused at the current time.
JMSException
void pauseProduction() throws JMSException
Pauses the production on the destination.
JMSException
boolean isProductionPaused()
Indicates the ProductionPause state of the destination.
String getProductionPausedState()
The current production pause state of the destination.
void resumeProduction() throws JMSException
Resumes the production operations on the destination.
JMSException
void pauseInsertion() throws JMSException
Pauses the insertion on the destination.
JMSException
boolean isInsertionPaused()
Indicates the InsertionPause state of the destination.
String getInsertionPausedState()
The current insertion pause state of the destination.
void resumeInsertion() throws JMSException
Resumes the insertion operations on the destination.
JMSException
void pauseConsumption() throws JMSException
Pauses the consumption on the destination.
JMSException
boolean isConsumptionPaused()
Indicates the consumption Pause state of the destination.
String getConsumptionPausedState()
The current consumption pause state of the destination.
void resumeConsumption() throws JMSException
Resumes the consumption operations on the destination.
JMSException
|
Copyright 1996, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Oracle WebLogic Server MBean Javadoc 11g Release 1 (10.3.3) Part Number E13945-03 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |