📄 i_adminservice.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 + -