selectoraction.java
来自「基于Jabber协议的即时消息服务器」· Java 代码 · 共 25 行
JAVA
25 行
/** * $RCSfile$ * $Revision: $ * $Date: $ * * Copyright (C) 2006 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */package org.jivesoftware.wildfire.net;import java.io.IOException;import java.nio.channels.SelectionKey;/** * @author Daniele Piras */interface SelectorAction{ public abstract void read( SelectionKey key ) throws IOException; public abstract void connect( SelectionKey key ) throws IOException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?