Uses of Package
java.nio.channels

Packages that use java.nio.channels
Package Description
java.io  
java.lang  
java.net  
java.nio  
java.nio.channels  
java.nio.channels.spi  
java.util  
  • Classes in java.nio.channels used by java.io
    Class Description
    FileChannel
    An abstract channel type for interaction with a platform file.
  • Classes in java.nio.channels used by java.lang
    Class Description
    Channel
    A channel is a conduit to I/O services covering such items as files, sockets, hardware devices, I/O ports or some software component.
  • Classes in java.nio.channels used by java.net
    Class Description
    DatagramChannel
    A DatagramChannel is a selectable channel that represents a partial abstraction of a datagram socket.
    ServerSocketChannel
    A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket.
    SocketChannel
    A SocketChannel is a selectable channel that provides a partial abstraction of stream connecting socket.
  • Classes in java.nio.channels used by java.nio
    Class Description
    DatagramChannel
    A DatagramChannel is a selectable channel that represents a partial abstraction of a datagram socket.
    FileChannel
    An abstract channel type for interaction with a platform file.
    Pipe
    A pipe contains two channels, forming a unidirectional pipe.
    ServerSocketChannel
    A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket.
    SocketChannel
    A SocketChannel is a selectable channel that provides a partial abstraction of stream connecting socket.
  • Classes in java.nio.channels used by java.nio.channels
    Class Description
    AsynchronousCloseException
    An AsynchronousCloseException is thrown when the underlying channel for an I/O operation is closed by another thread.
    ByteChannel
    A ByteChannel is both readable and writable.
    Channel
    A channel is a conduit to I/O services covering such items as files, sockets, hardware devices, I/O ports or some software component.
    ClosedChannelException
    A ClosedChannelException is thrown when a channel is closed for the type of operation attempted.
    DatagramChannel
    A DatagramChannel is a selectable channel that represents a partial abstraction of a datagram socket.
    FileChannel
    An abstract channel type for interaction with a platform file.
    FileChannel.MapMode
    MapMode defines file mapping mode constants.
    FileLock
    A FileLock represents a locked region of a file.
    GatheringByteChannel
    The interface for channels that can write a set of buffers in a single operation.
    InterruptibleChannel
    Channels that implement this interface can be asynchronously closed and interrupted.
    Pipe
    A pipe contains two channels, forming a unidirectional pipe.
    Pipe.SinkChannel
    Writable sink channel used to write to a pipe.
    Pipe.SourceChannel
    Readable source channel used to read from a pipe.
    ReadableByteChannel
    A ReadableByteChannel is a type of Channel that can read bytes.
    ScatteringByteChannel
    The interface for channels that can read data into a set of buffers in a single operation.
    SelectableChannel
    A channel that can be used with a Selector.
    SelectionKey
    A SelectionKey represents the relationship between a channel and a selector for which the channel is registered.
    Selector
    A controller for the selection of SelectableChannel objects.
    ServerSocketChannel
    A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket.
    SocketChannel
    A SocketChannel is a selectable channel that provides a partial abstraction of stream connecting socket.
    WritableByteChannel
    A WritableByteChannel is a type of Channel that can write bytes.
  • Classes in java.nio.channels used by java.nio.channels.spi
    Class Description
    AsynchronousCloseException
    An AsynchronousCloseException is thrown when the underlying channel for an I/O operation is closed by another thread.
    Channel
    A channel is a conduit to I/O services covering such items as files, sockets, hardware devices, I/O ports or some software component.
    ClosedChannelException
    A ClosedChannelException is thrown when a channel is closed for the type of operation attempted.
    DatagramChannel
    A DatagramChannel is a selectable channel that represents a partial abstraction of a datagram socket.
    InterruptibleChannel
    Channels that implement this interface can be asynchronously closed and interrupted.
    Pipe
    A pipe contains two channels, forming a unidirectional pipe.
    SelectableChannel
    A channel that can be used with a Selector.
    SelectionKey
    A SelectionKey represents the relationship between a channel and a selector for which the channel is registered.
    Selector
    A controller for the selection of SelectableChannel objects.
    ServerSocketChannel
    A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket.
    SocketChannel
    A SocketChannel is a selectable channel that provides a partial abstraction of stream connecting socket.
  • Classes in java.nio.channels used by java.util
    Class Description
    ReadableByteChannel
    A ReadableByteChannel is a type of Channel that can read bytes.