Package org.readium.r2.shared.util.zip.jvm
See: Description
-
Class Summary Class Description AsynchronousCloseException An {@code AsynchronousCloseException}is thrown when the underlying channel for an I/O operation is closed by another thread.ClosedChannelException A {@code ClosedChannelException}is thrown when a channel is closed for the type of operation attempted.ClosedByInterruptException A {@code ClosedByInterruptException}is thrown when a thread is interrupted in a blocking I/O operation.NonReadableChannelException A {@code NonReadableChannelException}is thrown when attempting to read from a channel that is not open for reading.NonWritableChannelException A {@code NonWritableChannelException}is thrown when attempting to write to a channel that is not open for writing. -
Interface Summary Interface Description WritableByteChannel A {@code WritableByteChannel}is a type of Channel that can write bytes.SeekableByteChannel An interface for channels that keep a pointer to a current position within an underlying byte-based data source such as a file. 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. ReadableByteChannel A {@code ReadableByteChannel}is a type of Channel that can read bytes.ByteChannel A ByteChannel is both readable and writable.