Uses of Class
java.nio.channels.SelectionKey
-
Packages that use SelectionKey 软件包 描述 java.nio.channels 定义通道,其表示与能够执行I / O操作的实体的连接,例如文件和套接字; 定义选择器,用于多路复用,非阻塞I / O操作。java.nio.channels.spi java.nio.channels
包的服务提供者类。 -
-
Uses of SelectionKey in java.nio.channels
Methods in java.nio.channels that return SelectionKey Modifier and Type 方法 描述 abstract SelectionKey
SelectionKey. interestOps(int ops)
将此键的兴趣设置为给定值。abstract SelectionKey
SelectableChannel. keyFor(Selector sel)
检索表示频道注册的键与给定的选择器。SelectionKey
SelectableChannel. register(Selector sel, int ops)
使用给定的选择器注册此频道,返回一个选择键。abstract SelectionKey
SelectableChannel. register(Selector sel, int ops, Object att)
使用给定的选择器注册此频道,返回一个选择键。Methods in java.nio.channels that return types with arguments of type SelectionKey Modifier and Type 方法 描述 abstract Set<SelectionKey>
Selector. keys()
返回此选择器的键集。abstract Set<SelectionKey>
Selector. selectedKeys()
返回此选择器的选择键集。 -
Uses of SelectionKey in java.nio.channels.spi
Subclasses of SelectionKey in java.nio.channels.spi Modifier and Type Class 描述 class
AbstractSelectionKey
选择键的基本实现类。Methods in java.nio.channels.spi that return SelectionKey Modifier and Type 方法 描述 SelectionKey
AbstractSelectableChannel. keyFor(Selector sel)
SelectionKey
AbstractSelectableChannel. register(Selector sel, int ops, Object att)
使用给定的选择器注册此频道,返回一个选择键。protected abstract SelectionKey
AbstractSelector. register(AbstractSelectableChannel ch, int ops, Object att)
使用此选择器注册给定通道。Methods in java.nio.channels.spi that return types with arguments of type SelectionKey Modifier and Type 方法 描述 protected Set<SelectionKey>
AbstractSelector. cancelledKeys()
检索此选择器的已取消键集。
-