i_remotepropertieslistener.java

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

JAVA
31
字号
/*------------------------------------------------------------------------------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 + =
减小字号Ctrl + -
显示快捷键?