KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > jmx > protocols > STATSMBean


1 package org.jgroups.jmx.protocols;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 /**
6  * @author Bela Ban
7  * @version $Id: STATSMBean.java,v 1.1 2005/06/07 10:17:26 belaban Exp $
8  */

9 public interface STATSMBean extends ProtocolMBean {
10     long getSentMessages();
11     long getSentBytes();
12     long getSentUnicastMessages();
13     long getSentUnicastBytes();
14     long getSentMcastMessages();
15     long getSentMcastBytes();
16     long getReceivedMessages();
17     long getReceivedBytes();
18     long getReceivedUnicastMessages();
19     long getReceivedUnicastBytes();
20     long getReceivedMcastMessages();
21     long getReceivedMcastBytes();
22     String JavaDoc printStats();
23 }
24
Popular Tags