asynclistener.java

来自「一款Java实现的HTTP代理服务器」· Java 代码 · 共 17 行

JAVA
17
字号
package rabbit.proxy;/** A listener for asynchronous events. * * @author <a href="mailto:robo@khelekore.org">Robert Olofsson</a> */public interface AsyncListener {    /** Reading failed      * @param cause the real reason the operation failed.     */    void failed (Exception cause);    /** The operation timed out      */    void timeout ();}

⌨️ 快捷键说明

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