Package org.jgroups.jmx.protocols
Interface FCMBean
-
- All Superinterfaces:
ProtocolMBean
- All Known Implementing Classes:
FC
public interface FCMBean extends ProtocolMBean
- Version:
- $Id: FCMBean.java,v 1.7 2007/05/07 09:55:37 belaban Exp $
- Author:
- Bela Ban
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getAverageTimeBlocked()
int
getBlockings()
int
getCreditRequestsReceived()
int
getCreditRequestsSent()
int
getCreditResponsesReceived()
int
getCreditResponsesSent()
long
getMaxBlockTime()
long
getMaxCredits()
long
getMinCredits()
double
getMinThreshold()
long
getTotalTimeBlocked()
java.lang.String
printCredits()
java.lang.String
printReceiverCredits()
java.lang.String
printSenderCredits()
void
setMaxBlockTime(long t)
void
setMaxCredits(long max_credits)
void
setMinCredits(long min_credits)
void
setMinThreshold(double min_threshold)
java.lang.String
showLastBlockingTimes()
void
unblock()
-
Methods inherited from interface org.jgroups.jmx.ProtocolMBean
create, destroy, dumpStats, getName, getPropertiesAsString, getStatsEnabled, printStats, resetStats, setProperties, setStatsEnabled, start, stop
-
-
-
-
Method Detail
-
getMaxCredits
long getMaxCredits()
-
setMaxCredits
void setMaxCredits(long max_credits)
-
getMinThreshold
double getMinThreshold()
-
setMinThreshold
void setMinThreshold(double min_threshold)
-
getMinCredits
long getMinCredits()
-
setMinCredits
void setMinCredits(long min_credits)
-
getBlockings
int getBlockings()
-
getTotalTimeBlocked
long getTotalTimeBlocked()
-
getMaxBlockTime
long getMaxBlockTime()
-
setMaxBlockTime
void setMaxBlockTime(long t)
-
getAverageTimeBlocked
double getAverageTimeBlocked()
-
getCreditRequestsReceived
int getCreditRequestsReceived()
-
getCreditRequestsSent
int getCreditRequestsSent()
-
getCreditResponsesReceived
int getCreditResponsesReceived()
-
getCreditResponsesSent
int getCreditResponsesSent()
-
printSenderCredits
java.lang.String printSenderCredits()
-
printReceiverCredits
java.lang.String printReceiverCredits()
-
printCredits
java.lang.String printCredits()
-
showLastBlockingTimes
java.lang.String showLastBlockingTimes()
-
unblock
void unblock()
-
-