?? stable.java
字號(hào):
package org.jgroups.jmx.protocols.pbcast;import org.jgroups.jmx.Protocol;/** * @author Bela Ban * @version $Id: STABLE.java,v 1.3 2005/08/26 14:19:08 belaban Exp $ */public class STABLE extends Protocol implements STABLEMBean { org.jgroups.protocols.pbcast.STABLE p; public STABLE() { } public STABLE(org.jgroups.stack.Protocol p) { super(p); this.p=(org.jgroups.protocols.pbcast.STABLE)p; } public void attachProtocol(org.jgroups.stack.Protocol p) { super.attachProtocol(p); this.p=(org.jgroups.protocols.pbcast.STABLE)p; } public long getDesiredAverageGossip() { return p.getDesiredAverageGossip(); } public void setDesiredAverageGossip(long gossip_interval) { p.setDesiredAverageGossip(gossip_interval); } public long getMaxBytes() { return p.getMaxBytes(); } public void setMaxBytes(long max_bytes) { p.setMaxBytes(max_bytes); } public int getGossipMessages() { return p.getNumberOfGossipMessages(); } public void runMessageGarbageCollection() { p.runMessageGarbageCollection(); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -