scalax.io.nio

SeekableFileChannel

class SeekableFileChannel extends SeekableByteChannel with Proxy

Linear Supertypes
Proxy, SeekableByteChannel, ByteChannel, WritableByteChannel, ReadableByteChannel, Channel, Closeable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. SeekableFileChannel
  2. Proxy
  3. SeekableByteChannel
  4. ByteChannel
  5. WritableByteChannel
  6. ReadableByteChannel
  7. Channel
  8. Closeable
  9. AnyRef
  10. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SeekableFileChannel (self: FileChannel)

Value Members

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

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

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

    Definition Classes
    SeekableFileChannel → Channel → Closeable
  9. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  10. def equals (that: Any): Boolean

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  13. def hashCode (): Int

    Definition Classes
    Proxy → AnyRef → Any
  14. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  15. def isOpen (): Boolean

    Definition Classes
    SeekableFileChannel → Channel
  16. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  17. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  18. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  19. def 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
    SeekableFileChannelSeekableByteChannel
  20. def position (newPosition: Long): SeekableFileChannel

    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
    SeekableFileChannelSeekableByteChannel
  21. def read (dst: ByteBuffer, pos: Long): Int

  22. def read (dst: ByteBuffer): Int

    Definition Classes
    SeekableFileChannelSeekableByteChannel → ReadableByteChannel
  23. val self : FileChannel

    Definition Classes
    SeekableFileChannel → Proxy
  24. def size : Long

    Return current size of Channel

    Return current size of Channel

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

    Attributes
    final
    Definition Classes
    AnyRef
  26. def toString (): String

    Definition Classes
    Proxy → AnyRef → Any
  27. def transferFrom (channel: ReadableByteChannel, position: Long, count: Long): Long

  28. def transferTo (position: Long, count: Long, channel: WritableByteChannel): Long

  29. def truncate (size: Long): SeekableFileChannel

    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
    SeekableFileChannelSeekableByteChannel
  30. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. def write (src: ByteBuffer, pos: Long): Int

  34. def write (src: ByteBuffer): Int

    Definition Classes
    SeekableFileChannelSeekableByteChannel → WritableByteChannel

Inherited from Proxy

Inherited from SeekableByteChannel

Inherited from ByteChannel

Inherited from WritableByteChannel

Inherited from ReadableByteChannel

Inherited from Channel

Inherited from Closeable

Inherited from AnyRef

Inherited from Any