Class AbstractSelectionKey
java.lang.Object
java.nio.channels.SelectionKey
java.nio.channels.spi.AbstractSelectionKey
Base implementation class for selection keys.
This class tracks the validity of the key and implements cancellation.
- Since:
- 1.4
-
Field Summary
Fields declared in class SelectionKey
OP_ACCEPT, OP_CONNECT, OP_READ, OP_WRITEModifier and TypeFieldDescriptionstatic final intOperation-set bit for socket-accept operations.static final intOperation-set bit for socket-connect operations.static final intOperation-set bit for read operations.static final intOperation-set bit for write operations. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInitializes a new instance of this class. -
Method Summary
Methods declared in class SelectionKey
attach, attachment, channel, interestOps, interestOps, interestOpsAnd, interestOpsOr, isAcceptable, isConnectable, isReadable, isWritable, readyOps, selectorModifier and TypeMethodDescriptionfinal ObjectAttaches the given object to this key.final ObjectRetrieves the current attachment.abstract SelectableChannelchannel()Returns the channel for which this key was created.abstract intRetrieves this key's interest set.abstract SelectionKeyinterestOps(int ops) Sets this key's interest set to the given value.intinterestOpsAnd(int ops) Atomically sets this key's interest set to the bitwise intersection ("and") of the existing interest set and the given value.intinterestOpsOr(int ops) Atomically sets this key's interest set to the bitwise union ("or") of the existing interest set and the given value.final booleanTests whether this key's channel is ready to accept a new socket connection.final booleanTests whether this key's channel has either finished, or failed to finish, its socket-connection operation.final booleanTests whether this key's channel is ready for reading.final booleanTests whether this key's channel is ready for writing.abstract intreadyOps()Retrieves this key's ready-operation set.abstract Selectorselector()Returns the selector for which this key was created.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
AbstractSelectionKey
protected AbstractSelectionKey()Initializes a new instance of this class.
-
-
Method Details
-
isValid
public final boolean isValid()Description copied from class:SelectionKeyTells 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.
- Specified by:
isValidin classSelectionKey- Returns:
trueif, and only if, this key is valid
-
cancel
public 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.
- Specified by:
cancelin classSelectionKey
-