KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > jmx > protocols > pbcast > STABLEMBean


1 package org.jgroups.jmx.protocols.pbcast;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 /**
6  * @author Bela Ban
7  * @version $Id: STABLEMBean.java,v 1.4 2007/01/09 11:40:16 belaban Exp $
8  */

9 public interface STABLEMBean extends ProtocolMBean {
10     long getDesiredAverageGossip();
11     void setDesiredAverageGossip(long gossip_interval);
12     long getMaxBytes();
13     void setMaxBytes(long max_bytes);
14     long getBytes();
15     int getStableSent();
16     int getStableReceived();
17     int getStabilitySent();
18     int getStabilityReceived();
19     void runMessageGarbageCollection();
20 }
21
Popular Tags