KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.jgroups.jmx.protocols;
2
3 /**
4  * @author Bela Ban
5  * @version $Id: TCPMBean.java,v 1.3 2006/10/02 06:47:53 belaban Exp $
6  */

7 public interface TCPMBean extends TPMBean {
8     int getOpenConnections();
9     String JavaDoc getBindAddr();
10     void setBindAddr(String JavaDoc bind_addr);
11     int getStartPort();
12     void setStartPort(int start_port);
13     int getEndPort();
14     void setEndPort(int end_port);
15     long getReaperInterval();
16     void setReaperInterval(long reaper_interval);
17     long getConnExpireTime();
18     void setConnExpireTime(long conn_expire_time);
19     String JavaDoc printConnections();
20 }
21
Popular Tags