KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > jmx > protocols > SFCMBean


1 package org.jgroups.jmx.protocols;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 /**
6  * @author Bela Ban
7  * @version $Id: SFCMBean.java,v 1.2 2007/01/09 10:19:22 belaban Exp $
8  */

9 public interface SFCMBean extends ProtocolMBean {
10     long getMaxCredits();
11     long getCredits();
12     long getBytesSent();
13     long getBlockings();
14     long getCreditRequestsReceived();
15     long getCreditRequestsSent();
16     long getReplenishmentsReceived();
17     long getReplenishmentsSent();
18     long getTotalBlockingTime();
19     double getAverageBlockingTime();
20     String JavaDoc printBlockingTimes();
21     String JavaDoc printReceived();
22     String JavaDoc printPendingCreditors();
23     String JavaDoc printPendingRequesters();
24     void unblock();
25 }
26
Popular Tags