object file
- Source
- file.scala
- Alphabetic
- By Inheritance
- file
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
chunkR(src: ⇒ AsynchronousFileChannel): Channel[Task, Int, ByteVector]
Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelby repeatedly requesting the given number of bytes.Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelby repeatedly requesting the given number of bytes. The last chunk may be less than the requested size.This implementation closes the
AsynchronousFileChannelwhen finished or in the event of an error. -
def
chunkR(path: Path): Channel[Task, Int, ByteVector]
Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the providedPathby repeatedly requesting the given number of bytes.Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the providedPathby repeatedly requesting the given number of bytes. The last chunk may be less than the requested size.This implementation closes the
AsynchronousFileChannelwhen finished or in the event of an error. -
def
chunkR(uri: URI): Channel[Task, Int, ByteVector]
Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the providedURIby repeatedly requesting the given number of bytes.Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the providedURIby repeatedly requesting the given number of bytes. The last chunk may be less than the requested size.This implementation closes the
AsynchronousFileChannelwhen finished or in the event of an error. -
def
chunkR(path: String): Channel[Task, Int, ByteVector]
Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the provided path by repeatedly requesting the given number of bytes.Creates a
Channel[Task,Int,ByteVector]from anAsynchronousFileChannelopened for the provided path by repeatedly requesting the given number of bytes. The last chunk may be less than the requested size.This implementation closes the
AsynchronousFileChannelwhen finished or in the event of an error. -
def
chunkReadBuffer(src: ⇒ AsynchronousFileChannel): Channel[Task, Int, ByteBuffer]
Creates a
Channel[Task,Int,ByteBuffer]from anAsynchronousFileChannelby repeatedly requesting the given number of bytes.Creates a
Channel[Task,Int,ByteBuffer]from anAsynchronousFileChannelby repeatedly requesting the given number of bytes. The last chunk may be less than the requested size. The emittedByteBufferisn't reused.This implementation closes the
AsynchronousFileChannelwhen finished or in the event of an error. -
def
chunkW(src: ⇒ AsynchronousFileChannel): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of theAsynchronousFileChannelwhich will be closed when thisProcessis halted. -
def
chunkW(path: Path, create: Boolean): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannelat the specifiedPathwhich will be closed when thisProcessis halted. -
def
chunkW(path: Path): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannel, creating the file at the specifiedPathif necessary, which will be closed when thisProcessis halted. -
def
chunkW(uri: URI, create: Boolean): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannelwhich will be closed when thisProcessis halted. -
def
chunkW(uri: URI): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannel, creating the file if necessary, which will be closed when thisProcessis halted. -
def
chunkW(path: String, create: Boolean): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannelwhich will be closed when thisProcessis halted. -
def
chunkW(path: String): Sink[Task, ByteVector]
Creates a
Sink[Task, ByteVector]representation of anAsynchronousFileChannel, creating the file if necessary, which will be closed when thisProcessis halted. -
def
chunkWriteBuffer(src: ⇒ AsynchronousFileChannel): Sink[Task, ByteBuffer]
Creates a
Sink[Task,ByteBuffer]from anAsynchronousFileChannel, which will be closed when thisProcessis halted. -
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
linesR(src: ⇒ AsynchronousFileChannel)(implicit codec: Codec): Process[Task, String]
Creates a
Process[Task,String]from the lines of theAsynchronousFileChannelusing the nio2 framework to make the process asynchronous.Creates a
Process[Task,String]from the lines of theAsynchronousFileChannelusing the nio2 framework to make the process asynchronous. Theresourcecombinator is used to ensure the AsynchronousFileChannel is automatically closed on completion. -
def
linesR(path: Path)(implicit codec: Codec): Process[Task, String]
Creates a
Process[Task,String]from the lines of a file, using the nio2AsynchronousFileChannelto make the process asynchronous.Creates a
Process[Task,String]from the lines of a file, using the nio2AsynchronousFileChannelto make the process asynchronous. Theresourcecombinator is used to ensure theAsynchronousFileChannelis automatically closed on completion. -
def
linesR(filename: String)(implicit codec: Codec): Process[Task, String]
Creates a
Process[Task,String]from the lines of a file, using the nio2 framework to make the process asynchronous.Creates a
Process[Task,String]from the lines of a file, using the nio2 framework to make the process asynchronous. Theresourcecombinator is used to ensure the AsynchronousFileChannel is automatically closed on completion. -
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
textR(src: ⇒ AsynchronousFileChannel)(implicit codec: Codec): Process[Task, String]
Creates a
Process[Task,String]from the text of theAsynchronousFileChannelusing the nio2 framework to make the process asynchronous.Creates a
Process[Task,String]from the text of theAsynchronousFileChannelusing the nio2 framework to make the process asynchronous. Theresourcecombinator is used to ensure the AsynchronousFileChannel is automatically closed on completion. -
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )