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

📄 multiplexerlistener.java

📁 OpenJMS是一个开源的Java Message Service API 1.0.2 规范的实现,它包含有以下特性: *. 它既支持点到点(point-to-point)(PTP)模型和发布/订
💻 JAVA
字号:
package org.exolab.jms.net.multiplexer;/** * Listener for {@link Multiplexer} events. * * @author <a href="mailto:tma@netspace.net.au">Tim Anderson</a> * @version $Revision: 1.3 $ $Date: 2006/12/16 12:37:17 $ */public interface MultiplexerListener {    /**     * Invoked for an invocation request.     *     * @param channel the channel the invocation is on     */    void request(Channel channel);    /**     * Invoked when the connection is closed by the peer.     */    void closed();    /**     * Invoked when an error occurs on the multiplexer.     *     * @param error the error     */    void error(Throwable error);    /**     * Notifies of a successful ping.     *     * @param token the token sent in the ping     */    void pinged(int token);}

⌨️ 快捷键说明

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