1 package org.jgroups.jmx.protocols; 2 3 import org.jgroups.jmx.ProtocolMBean; 4 5 9 public interface FCMBean extends ProtocolMBean { 10 long getMaxCredits(); 11 void setMaxCredits(long max_credits); 12 double getMinThreshold(); 13 void setMinThreshold(double min_threshold); 14 long getMinCredits(); 15 void setMinCredits(long min_credits); 16 int getBlockings(); 17 long getTotalTimeBlocked(); 18 long getMaxBlockTime(); 19 void setMaxBlockTime(long t); 20 double getAverageTimeBlocked(); 21 int getCreditRequestsReceived(); 22 int getCreditRequestsSent(); 23 int getCreditResponsesReceived(); 24 int getCreditResponsesSent(); 25 String printSenderCredits(); 26 String printReceiverCredits(); 27 String printCredits(); 28 String showLastBlockingTimes(); 29 void unblock(); 30 } | Popular Tags |