Package org.jgroups.jmx.protocols
Interface SFCMBean
-
- All Superinterfaces:
ProtocolMBean
- All Known Implementing Classes:
SFC
public interface SFCMBean extends ProtocolMBean
- Version:
- $Id: SFCMBean.java,v 1.2 2007/01/09 10:19:22 belaban Exp $
- Author:
- Bela Ban
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getAverageBlockingTime()
long
getBlockings()
long
getBytesSent()
long
getCreditRequestsReceived()
long
getCreditRequestsSent()
long
getCredits()
long
getMaxCredits()
long
getReplenishmentsReceived()
long
getReplenishmentsSent()
long
getTotalBlockingTime()
java.lang.String
printBlockingTimes()
java.lang.String
printPendingCreditors()
java.lang.String
printPendingRequesters()
java.lang.String
printReceived()
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()
-
getCredits
long getCredits()
-
getBytesSent
long getBytesSent()
-
getBlockings
long getBlockings()
-
getCreditRequestsReceived
long getCreditRequestsReceived()
-
getCreditRequestsSent
long getCreditRequestsSent()
-
getReplenishmentsReceived
long getReplenishmentsReceived()
-
getReplenishmentsSent
long getReplenishmentsSent()
-
getTotalBlockingTime
long getTotalBlockingTime()
-
getAverageBlockingTime
double getAverageBlockingTime()
-
printBlockingTimes
java.lang.String printBlockingTimes()
-
printReceived
java.lang.String printReceived()
-
printPendingCreditors
java.lang.String printPendingCreditors()
-
printPendingRequesters
java.lang.String printPendingRequesters()
-
unblock
void unblock()
-
-