java.nio.channels.spi |
|
Java Source File Name | Type | Comment |
AbstractInterruptibleChannel.java | Class | This class roots the implementation of interruptible channels.
The basic usage pattern for an interruptible channel is to invoke
begin() before any IO operations, then
end(boolean) after completing the operation. |
AbstractSelectableChannel.java | Class | Abstract class for selectable channels.
In this class, there are methods about registering/deregistering a channel,
about channel closing. |
AbstractSelectionKey.java | Class | Abstract class for selection key. |
AbstractSelector.java | Class | Abstract class for selectors.
This class realizes the interruption of selection by begin and
end . |
SelectorProvider.java | Class | Provider for nio selector and selectable channel.
The provider can be got by system property or the configuration file in a jar
file, if not, the system default provider will return. |