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

📄 i_remotepropertieslistener.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      I_RemotePropertiesListener.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Listens on remote properties send from clientsAuthor:    xmlBlaster@marcelruff.info------------------------------------------------------------------------------*/package org.xmlBlaster.engine;import java.util.Map;import org.xmlBlaster.authentication.SessionInfo;/** * Listens on remote properties send from clients.  * <p> * The events are fired by the RequestBroker instance. * Is triggered for arriving topic __sys__remoteProperties. * * @author Marcel Ruff */public interface I_RemotePropertiesListener extends java.util.EventListener {   /**    * Invoked when RemoteProperties have arrived.    * @param sessionInfo The client sending the properties,    *                     the remoteProperties are added to this sessionInfo already    * @param remoteProperties Key is a string, value is of type ClientProperties     */   public void update(SessionInfo sessionInfo, Map remoteProperties);}

⌨️ 快捷键说明

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