connectqosdatambean.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 29 行

JAVA
29
字号
/*------------------------------------------------------------------------------Name:      ConnectQosDataMBean.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Interface to access information about ConnectQos------------------------------------------------------------------------------*/package org.xmlBlaster.util.qos;import org.xmlBlaster.util.XmlBlasterException;/** * Declares JMX available methods of a ConnectQos instance.  * @author xmlBlaster@marcelruff.info * @since 1.0.5 * @see org.xmlBlaster.util.qos.ConnectQos */public interface ConnectQosDataMBean {   /** How often the same client may login */   public long getMaxSessions();   /** The configured session live span in milli seconds */   public long getSessionTimeout();   /** The configured session live span in milli seconds */   public void setSessionTimeout(long timeout);   /** Does the client accept PtP messages? */   public boolean isPtpAllowed();   /** If this flag is set, the session will persist a server crash. */   public boolean isPersistent();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?