scalax.io

ArrayBufferSeekableChannel

class ArrayBufferSeekableChannel extends SeekableByteChannel

Linear Supertypes
SeekableByteChannel, ByteChannel, WritableByteChannel, ReadableByteChannel, Channel, Closeable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ArrayBufferSeekableChannel
  2. SeekableByteChannel
  3. ByteChannel
  4. WritableByteChannel
  5. ReadableByteChannel
  6. Channel
  7. Closeable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ArrayBufferSeekableChannel(data: ArrayBuffer[Byte], openOptions: OpenOption*)(forceDeleteAction: (ArrayBufferSeekableChannel) ⇒ Unit = ..., closeAction: (ArrayBufferSeekableChannel) ⇒ Unit = ...)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def close(): Unit

    Definition Classes
    ArrayBufferSeekableChannel → Channel → Closeable
  9. var closed: Boolean

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def isOpen(): Boolean

    Definition Classes
    ArrayBufferSeekableChannel → Channel
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def position(newPosition: Long): ArrayBufferSeekableChannel

    Sets this channel's position.

    Sets this channel's position.

    No exception is thrown if value is greater than the length of the Channel but a read will fail and a write will grow the channel to position and begin writing there.

    newPosition

    The new position of the channel

    returns

    the same channel object

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel
  21. var position: Long

    Returns this channel's position

    Returns this channel's position

    returns

    This channel's position. A non-negative integer counting the number of bytes from the beginning of the entity to the current position

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel
  22. def read(dst: ByteBuffer): Int

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel → ReadableByteChannel
  23. def read(dst: ByteBuffer, pos: Long): Int

    Definition Classes
    SeekableByteChannel
  24. def size: Long

    Return current size of Channel

    Return current size of Channel

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. def truncate(size: Long): SeekableByteChannel

    Reduce the size of the channel to the indicated size.

    Reduce the size of the channel to the indicated size. If size is > than size of channel then channel is not modified

    size

    max size for channel after operation

    returns

    the same channel object

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  31. def write(src: ByteBuffer): Int

    Definition Classes
    ArrayBufferSeekableChannelSeekableByteChannel → WritableByteChannel
  32. def write(src: ByteBuffer, pos: Long): Int

    Definition Classes
    SeekableByteChannel

Inherited from SeekableByteChannel

Inherited from ByteChannel

Inherited from WritableByteChannel

Inherited from ReadableByteChannel

Inherited from Channel

Inherited from Closeable

Inherited from AnyRef

Inherited from Any

Ungrouped