i_msgdistributor.java

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

JAVA
32
字号
/*------------------------------------------------------------------------------Name:      I_MsgDistributor.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.engine.distributor;import org.xmlBlaster.engine.MsgUnitWrapper;import org.xmlBlaster.engine.I_SubscriptionListener;import org.xmlBlaster.util.plugin.I_Plugin;// import org.xmlBlaster.util.I_ResponseListener;/** * I_MsgDistributor * * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> *  */public interface I_MsgDistributor extends I_SubscriptionListener, I_Plugin {   /**    * This method should not throw any exception so it is responsability of    * the plugin developer to catch Throwable and make the necessary    * error handling.    *     * @param msgUnitWrapper the entry to distribute    */   void distribute(MsgUnitWrapper msgUnitWrapper);}

⌨️ 快捷键说明

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