1 package org.jgroups.jmx.protocols.pbcast; 2 3 import org.jgroups.jmx.ProtocolMBean; 4 5 9 public interface GMSMBean extends ProtocolMBean { 10 String getView(); 11 String getLocalAddress(); 12 String getMembers(); 13 int getNumMembers(); 14 boolean isCoordinator(); 15 int getNumberOfViews(); 16 long getJoinTimeout(); 17 void setJoinTimeout(long t); 18 long getJoinRetryTimeout(); 19 void setJoinRetryTimeout(long t); 20 boolean isShun(); 21 void setShun(boolean s); 22 String printPreviousMembers(); 23 String printPreviousViews(); 24 int getViewHandlerQueue(); 25 boolean isViewHandlerSuspended(); 26 String dumpViewHandlerQueue(); 27 String dumpHistory(); 28 void suspendViewHandler(); 29 void resumeViewHandler(); 30 } 31 | Popular Tags |