Class/Object

zio.nio.channels

FileChannel

Related Docs: object FileChannel | package channels

Permalink

final class FileChannel extends GatheringByteChannel with ScatteringByteChannel

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileChannel
  2. ScatteringByteChannel
  3. GatheringByteChannel
  4. Channel
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val channel: java.nio.channels.FileChannel

    Permalink
    Attributes
    protected[zio.nio.channels]
    Definition Classes
    FileChannelScatteringByteChannelGatheringByteChannelChannel
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def force(metadata: Boolean): ZIO[Blocking, IOException, Unit]

    Permalink
  11. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  14. final def isOpen: UIO[Boolean]

    Permalink

    Tells whether or not this channel is open.

    Tells whether or not this channel is open.

    Definition Classes
    Channel
  15. def lock(position: Long = 0L, size: Long = Long.MaxValue, shared: Boolean = false): ZIO[Blocking, Exception, FileLock]

    Permalink
  16. def map(mode: MapMode, position: Long, size: Long): ZIO[Blocking, Exception, MappedByteBuffer]

    Permalink
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  20. def position(newPosition: Long): IO[IOException, Unit]

    Permalink
  21. def position: IO[IOException, Long]

    Permalink
  22. def read(dst: ByteBuffer, position: Long): ZIO[Blocking, Exception, Int]

    Permalink
  23. final def read(dst: ByteBuffer): IO[IOException, Long]

    Permalink
    Definition Classes
    ScatteringByteChannel
  24. final def read(dsts: List[ByteBuffer]): IO[IOException, Long]

    Permalink
    Definition Classes
    ScatteringByteChannel
  25. final def readChunk(capacity: Int): IO[IOException, Chunk[Byte]]

    Permalink
    Definition Classes
    ScatteringByteChannel
  26. def size: IO[IOException, Long]

    Permalink
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def transferFrom(src: ScatteringByteChannel, position: Long, count: Long): ZIO[Blocking, Exception, Long]

    Permalink
  30. def transferTo(position: Long, count: Long, target: GatheringByteChannel): ZIO[Blocking, Exception, Long]

    Permalink
  31. def truncate(size: Long): ZIO[Blocking, IOException, Unit]

    Permalink
  32. def tryLock(position: Long = 0L, size: Long = Long.MaxValue, shared: Boolean = false): IO[Exception, Option[FileLock]]

    Permalink
  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def write(src: ByteBuffer, position: Long): ZIO[Blocking, Exception, Int]

    Permalink
  37. final def write(src: ByteBuffer): IO[Exception, Long]

    Permalink
    Definition Classes
    GatheringByteChannel
  38. final def write(srcs: List[ByteBuffer]): IO[Exception, Long]

    Permalink
    Definition Classes
    GatheringByteChannel
  39. final def writeChunk(src: Chunk[Byte]): IO[Exception, Long]

    Permalink
    Definition Classes
    GatheringByteChannel
  40. final def writeChunks(srcs: List[Chunk[Byte]]): IO[Exception, Long]

    Permalink
    Definition Classes
    GatheringByteChannel

Inherited from ScatteringByteChannel

Inherited from GatheringByteChannel

Inherited from Channel

Inherited from AnyRef

Inherited from Any

Ungrouped