📄 i_main.java
字号:
/*------------------------------------------------------------------------------Name: I_Main.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster;/** * I_Main interface is a minimized interface to control Main.java. * <p /> * It allows instantiating xmlBlaster in EmbeddedXmlBlaster with a specific classloader. */public interface I_Main{ public void init(org.xmlBlaster.util.Global g); public void init(java.util.Properties p); /** Same as shutdown() but does additionally an engine.global.shutdown() */ public void destroy(); /** Release all resources */ public void shutdown(); public boolean isHalted(); public org.xmlBlaster.engine.ServerScope getGlobal();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -