Package java.nio.channels.spi | |
This package defines four classes that are used by
implementors of channels and selector classes of
java.nio.channels. It also defines the
SelectorProvider class which allows a custom
implementation of channels and selectors to be specified for use
instead of the default implementation. Application programmers should
never need to use this package, except in rare circumstances to
explicitly install a SelectionProvider
implementation with the SelectionProvider.provider(
) method.
Classes
public abstract class AbstractInterruptibleChannel
implements java.nio.channels.Channel, java.nio.channels.
InterruptibleChannel;
public abstract class AbstractSelectableChannel extends java.nio.channels.
SelectableChannel;
public abstract class AbstractSelectionKey extends java.nio.channels.
SelectionKey;
public abstract class AbstractSelector extends java.nio.channels.Selector;
public abstract class SelectorProvider;
|