final class MultiReadOnlySeekableByteChannel extends SeekableByteChannel
Takes multiple SeekableByteChannel instances and turns them into a single virtual one.
This is used for reading multi-part 7 Zip archives via commons-compress where we just need to concatenate all the parts of the 7 Zip archive into a single SeekableByteChannel which can then be used with the commons-compress SevenZFile class.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MultiReadOnlySeekableByteChannel
- SeekableByteChannel
- ByteChannel
- WritableByteChannel
- ReadableByteChannel
- Channel
- Closeable
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def close(): Unit
- Definition Classes
- MultiReadOnlySeekableByteChannel → Channel → Closeable → AutoCloseable
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isOpen(): Boolean
- Definition Classes
- MultiReadOnlySeekableByteChannel → Channel
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def position(): Long
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel
- def position(newPosition: Long): SeekableByteChannel
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel
- def read(dst: ByteBuffer): Int
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel → ReadableByteChannel
- def size(): Long
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def truncate(size: Long): SeekableByteChannel
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def write(src: ByteBuffer): Int
- Definition Classes
- MultiReadOnlySeekableByteChannel → SeekableByteChannel → WritableByteChannel