rewriteimportmxbean.java
来自「RESIN 3.2 最新源码」· Java 代码 · 共 37 行
JAVA
37 行
package com.caucho.management.server;import com.caucho.jmx.Description;import com.caucho.jmx.Units;/** * Interface for a rewrite rule. * * <pre> * resin:type=RewriteImport,name=... * </pre> */@Description("A rewrite rule that imports rules from an xml file")public interface RewriteImportMXBean extends ManagedObjectMXBean{ @Description("The configured millisecond interval between checks for the need to redeploy") @Units("milliseconds") public long getDependencyCheckInterval(); @Description("The error that ocurred during the last redeploy, if any") public String getRedeployError(); @Description("The current lifecycle state") public String getState(); @Description("Enables the imported rules") public void start(); @Description("Disables the imported rules") public void stop(); @Description("Updates the imported rules if the file has changed") public void update();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?