KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jgroups.jmx.protocols;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 /**
6  * @author Bela Ban
7  * @version $Id: FCMBean.java,v 1.7 2007/05/07 09:55:37 belaban Exp $
8  */

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 JavaDoc printSenderCredits();
26     String JavaDoc printReceiverCredits();
27     String JavaDoc printCredits();
28     String JavaDoc showLastBlockingTimes();
29     void unblock();
30 }
Popular Tags