BEA Systems, Inc.

Type-Safe Access to BEA WebLogic Server 9.1 MBeans (Deprecated)

(Methods marked with @since 9.0.0.0 or later are not available through the deprecated MBeanHome interface.)


weblogic.management.runtime
Interface SAFStatisticsCommonMBean

All Superinterfaces:
DynamicMBean, MBeanRegistration, NotificationBroadcaster, weblogic.management.runtime.RuntimeMBean, weblogic.management.WebLogicMBean

public interface SAFStatisticsCommonMBean
extends weblogic.management.runtime.RuntimeMBean

This class is has all the common statistics stuff for a SAFAgentRuntimeMBean or a SAFRemoteEndpoitsRuntimeMBean.

Deprecation of MBeanHome and Type-Safe Interfaces

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/documentation/index.html.

Since:
9.0.0.0
Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Method Summary
 long getBytesCurrentCount()
          Returns the current number of bytes.
 long getBytesHighCount()
          Returns the peak number of bytes since the last reset.
 long getBytesPendingCount()
          Returns the number of pending bytes.
 long getBytesReceivedCount()
          The number of bytes received since the last reset.
 long getBytesThresholdTime()
          Returns the amount of time in the threshold condition since the last reset.
 long getFailedMessagesTotal()
          Returns the total number of messages that have failed to be forwarded since the last reset.
 long getMessagesCurrentCount()
          Returns the current number of messages.
 long getMessagesHighCount()
          Returns the peak number of messages since the last reset.
 long getMessagesPendingCount()
          Returns the number of pending messages.
 long getMessagesReceivedCount()
          The number of messages received since the last reset.
 long getMessagesThresholdTime()
          Returns the amount of time in the threshold condition since the last reset.
 
Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
 
Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes
 
Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister
 
Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener
 

Method Detail

getBytesCurrentCount

public long getBytesCurrentCount()

Returns the current number of bytes. This number does not include the pending bytes.

Returns:
The bytesCurrentCount value

getBytesHighCount

public long getBytesHighCount()

Returns the peak number of bytes since the last reset.

Returns:
The bytesHighCount value

getBytesPendingCount

public long getBytesPendingCount()

Returns the number of pending bytes. Pending bytes are over and above the current number of bytes.

Returns:
The bytesPendingCount value

getBytesReceivedCount

public long getBytesReceivedCount()

The number of bytes received since the last reset.

Returns:
The bytesReceivedCount value

getBytesThresholdTime

public long getBytesThresholdTime()

Returns the amount of time in the threshold condition since the last reset.

Returns:
The bytesThresholdTime value

getFailedMessagesTotal

public long getFailedMessagesTotal()

Returns the total number of messages that have failed to be forwarded since the last reset.

Returns:
The failedMessagesTotal value

getMessagesCurrentCount

public long getMessagesCurrentCount()

Returns the current number of messages. This number includes the pending messages.

Returns:
The messagesCurrentCount value

getMessagesHighCount

public long getMessagesHighCount()

Returns the peak number of messages since the last reset.

Returns:
The messagesHighCount value

getMessagesPendingCount

public long getMessagesPendingCount()

Returns the number of pending messages. 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 been forwarded but has not been acknowledged.

Returns:
The messagesPendingCount value

getMessagesReceivedCount

public long getMessagesReceivedCount()

The number of messages received since the last reset.

Returns:
The messagesReceivedCount value

getMessagesThresholdTime

public long getMessagesThresholdTime()

Returns the amount of time in the threshold condition since the last reset.

Returns:
The messagesThresholdTime value

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs91
Copyright 2005 BEA Systems Inc.