Package org.apache.coyote.http11.upgrade
Class UpgradeGroupInfo
- java.lang.Object
-
- org.apache.tomcat.util.modeler.BaseModelMBean
-
- org.apache.coyote.http11.upgrade.UpgradeGroupInfo
-
- All Implemented Interfaces:
javax.management.DynamicMBean
,javax.management.MBeanRegistration
,javax.management.modelmbean.ModelMBeanNotificationBroadcaster
,javax.management.NotificationBroadcaster
public class UpgradeGroupInfo extends BaseModelMBean
This aggregates the data collected from each UpgradeInfo instance.
-
-
Field Summary
-
Fields inherited from class org.apache.tomcat.util.modeler.BaseModelMBean
attributeBroadcaster, generalBroadcaster, managedBean, oname, resource, resourceType
-
-
Constructor Summary
Constructors Constructor Description UpgradeGroupInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addUpgradeInfo(UpgradeInfo ui)
long
getBytesReceived()
long
getBytesSent()
long
getMsgsReceived()
long
getMsgsSent()
void
removeUpgradeInfo(UpgradeInfo ui)
void
resetCounters()
void
setBytesReceived(long bytesReceived)
void
setBytesSent(long bytesSent)
void
setMsgsReceived(long msgsReceived)
void
setMsgsSent(long msgsSent)
-
Methods inherited from class org.apache.tomcat.util.modeler.BaseModelMBean
addAttributeChangeNotificationListener, addNotificationListener, getAttribute, getAttributes, getClassName, getJmxName, getManagedResource, getMBeanInfo, getModelerType, getNotificationInfo, getObjectName, invoke, postDeregister, postRegister, preDeregister, preRegister, removeAttributeChangeNotificationListener, removeNotificationListener, sendAttributeChangeNotification, sendAttributeChangeNotification, sendNotification, sendNotification, setAttribute, setAttributes, setManagedBean, setManagedResource, toString
-
-
-
-
Method Detail
-
addUpgradeInfo
public void addUpgradeInfo(UpgradeInfo ui)
-
removeUpgradeInfo
public void removeUpgradeInfo(UpgradeInfo ui)
-
getBytesReceived
public long getBytesReceived()
-
setBytesReceived
public void setBytesReceived(long bytesReceived)
-
getBytesSent
public long getBytesSent()
-
setBytesSent
public void setBytesSent(long bytesSent)
-
getMsgsReceived
public long getMsgsReceived()
-
setMsgsReceived
public void setMsgsReceived(long msgsReceived)
-
getMsgsSent
public long getMsgsSent()
-
setMsgsSent
public void setMsgsSent(long msgsSent)
-
resetCounters
public void resetCounters()
-
-