i_update.java

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

JAVA
25
字号
/*------------------------------------------------------------------------------Name:      I_Update.javaProject:   org.xmlBlasterProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.contrib;import java.io.InputStream;import java.util.Map;/** * Helper to return subscribed messages.   * @author Marcel Ruff */public interface I_Update {   /**    * The message received from the MoM or from another source.    * @param topic The topic name    * @param content The message content    * @param attrMap A map with attribute, can be null     */   // void update(String topic, byte[] content, Map attrMap) throws Exception;   void update(String topic, InputStream is, Map attrMap) throws Exception;}

⌨️ 快捷键说明

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