KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > jmx > protocols > pbcast > FLUSHMBean


1 package org.jgroups.jmx.protocols.pbcast;
2
3 import org.jgroups.jmx.ProtocolMBean;
4
5 /**
6  * @author Vladimir Blagojevic
7  * @version $Id$
8  */

9 public interface FLUSHMBean extends ProtocolMBean {
10     
11     public double getAverageFlushDuration();
12     
13     public long getTotalTimeInFlush();
14     
15     public int getNumberOfFlushes();
16     
17     boolean startFlush(long timeout);
18
19     void stopFlush();
20 }
21
Popular Tags