📄 i_msgdistributor.java
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -