public abstract class AbstractSelectionKey extends SelectionKey
This class tracks the validity of the key and implements cancellation.
OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITE
Modifier | Constructor | Description |
---|---|---|
protected |
Initializes a new instance of this class. |
attach, attachment, channel, interestOps, interestOps, interestOpsAnd, interestOpsOr, isAcceptable, isConnectable, isReadable, isWritable, readyOps, selector
protected AbstractSelectionKey()
public final boolean isValid()
SelectionKey
A key is valid upon creation and remains so until it is cancelled, its channel is closed, or its selector is closed.
isValid
in class SelectionKey
true
if, and only if, this key is validpublic final void cancel()
If this key has not yet been cancelled then it is added to its selector's cancelled-key set while synchronized on that set.
cancel
in class SelectionKey
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/nio/channels/spi/AbstractSelectionKey.html