- java.lang.Object
-
- java.nio.channels.SelectionKey
-
- java.nio.channels.spi.AbstractSelectionKey
-
public abstract class AbstractSelectionKey extends SelectionKey
选择键的基本实现类。该类跟踪密钥的有效性并实现取消。
- 从以下版本开始:
- 1.4
-
-
Field Summary
-
Fields inherited from class java.nio.channels.SelectionKey
OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITE
-
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
AbstractSelectionKey()
初始化此类的新实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
cancel()
取消此键。boolean
isValid()
告知这个密钥是否有效。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class java.nio.channels.SelectionKey
attach, attachment, channel, interestOps, interestOps, isAcceptable, isConnectable, isReadable, isWritable, readyOps, selector
-
-
-
-
方法详细信息
-
isValid
public final boolean isValid()
描述从类别复制SelectionKey
告知这个密钥是否有效。钥匙在创建时有效,并保持原样,直到它被取消,其通道关闭或其选择器关闭。
- Specified by:
-
isValid
在SelectionKey
- 结果
-
true
如果,且仅当此密钥有效
-
cancel
public final void cancel()
取消此键。如果此键尚未被取消,则在该组同步时将其添加到其选择器的取消键集合中。
- Specified by:
-
cancel
在SelectionKey
-
-