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