package file
- Alphabetic
- Public
- Protected
Type Members
- trait FileHandle[F[_]] extends FileHandlePlatform[F]
Provides the ability to read/write/lock/inspect a file in the effect
F. - sealed abstract class Path extends AnyRef
- final case class ReadCursor[F[_]](file: FileHandle[F], offset: Long) extends Product with Serializable
Associates a
FileHandlewith an offset in to the file.Associates a
FileHandlewith an offset in to the file.This encapsulates the pattern of incrementally reading bytes in from a file, a chunk at a time. Convenience methods are provided for working with pulls.
- final case class WriteCursor[F[_]](file: FileHandle[F], offset: Long) extends Product with Serializable
Associates a
FileHandlewith an offset in to the file.Associates a
FileHandlewith an offset in to the file.This encapsulates the pattern of incrementally writing bytes in to a file, a chunk at a time. Convenience methods are provided for working with pulls.
Value Members
- object FileHandle extends FileHandleCompanionPlatform
- object Path
- object ReadCursor extends ReadCursorCompanionPlatform with Serializable
- object WriteCursor extends WriteCursorCompanionPlatform with Serializable