public abstract class AbstractSelectionKey extends SelectionKey
Base implementation class for selection keys.
This class tracks the validity of the key and implements cancellation.
OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITE
protected AbstractSelectionKey()
Initializes a new instance of this class.
public final boolean isValid()
Description copied from class: SelectionKey
Tells whether or not this key is valid.
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()
Cancels this key.
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–2017, 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.