i_adminservice.java

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

JAVA
33
字号
/*------------------------------------------------------------------------------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 + =
减小字号Ctrl + -
显示快捷键?