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

📄 i_alertproducer.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      I_AlertProducer.javaProject:   org.xmlBlasterProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.contrib.dbwatcher.detector;import org.xmlBlaster.contrib.I_Info;/** * Interface which hides a scheduler or a trigger.  * <p>  * The plugin needs to call {@link I_ChangeDetector#checkAgain(Map)} whenever * it thinks it's time to do so. * @author Marcel Ruff */public interface I_AlertProducer {   /**    * Needs to be called after construction.     * @param info The configuration environment    * @throws Exception Can be any plugin specific exception    */   void init(I_Info info, I_ChangeDetector changeDetector) throws Exception;      /**    * Starts the alert producer.     * @throws Exception of any type    */   void startProducing() throws Exception;   /**    * Sets the producer to standby.     * A call to #startProducing() starts it again     * @throws Exception of any type    */   void stopProducing() throws Exception;   /**    * Stop producing alerts and cleanup resources.     * @throws Exception of any type     */   void shutdown() throws Exception;}

⌨️ 快捷键说明

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