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

📄 i_adminservice.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      I_AdminQueue.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Interface to access information about a client instance------------------------------------------------------------------------------*/package org.xmlBlaster.util.admin;/** * Declares available methods to control a xmlBlaster service plugin.    * * @author xmlBlaster@marcelruff.info * @since 1.0.8 */public interface I_AdminService extends I_AdminPlugin {   /**    * Activate this service    */   public void activate() throws Exception;   /**    * Deactivate the service to standby.     * A call to activate() fires the service up again    */   public void deActivate();      /**    * Access the current state    * @return true if active    */   public boolean isActive();}

⌨️ 快捷键说明

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