⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connectqosdatambean.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -