01: package org.jgroups.jmx.protocols.pbcast;
02:
03: import org.jgroups.jmx.ProtocolMBean;
04:
05: /**
06: * @author Bela Ban
07: * @version $Id: STABLEMBean.java,v 1.3 2005/08/26 14:19:08 belaban Exp $
08: */
09: public interface STABLEMBean extends ProtocolMBean {
10: long getDesiredAverageGossip();
11:
12: void setDesiredAverageGossip(long gossip_interval);
13:
14: long getMaxBytes();
15:
16: void setMaxBytes(long max_bytes);
17:
18: int getGossipMessages();
19:
20: void runMessageGarbageCollection();
21: }
|