object FileIO
- Alphabetic
- By Inheritance
- FileIO
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
fromPath(f: Path, chunkSize: Int, startPosition: Long): Source[ByteString, Future[IOResult]]
Creates a Source from a files contents.
Creates a Source from a files contents. Emitted elements are
chunkSize
sized akka.util.ByteString elements, except the final element, which will be up tochunkSize
in size.You can configure the default dispatcher for this Source by changing the
akka.stream.blocking-io-dispatcher
or set it for a given Source by using ActorAttributes.It materializes a Future of IOResult containing the number of bytes read from the source file upon completion, and a possible exception if IO operation was not completed successfully.
- f
the file path to read from
- chunkSize
the size of each read operation, defaults to 8192
- startPosition
the start position to read from
-
def
fromPath(f: Path, chunkSize: Int = 8192): Source[ByteString, Future[IOResult]]
Creates a Source from a files contents.
Creates a Source from a files contents. Emitted elements are
chunkSize
sized akka.util.ByteString elements, except the final element, which will be up tochunkSize
in size.You can configure the default dispatcher for this Source by changing the
akka.stream.blocking-io-dispatcher
or set it for a given Source by using akka.stream.ActorAttributes.It materializes a Future of IOResult containing the number of bytes read from the source file upon completion, and a possible exception if IO operation was not completed successfully.
- f
the file path to read from
- chunkSize
the size of each read operation, defaults to 8192
-
def
toPath(f: Path, options: Set[OpenOption], startPosition: Long): Sink[ByteString, Future[IOResult]]
Creates a Sink which writes incoming ByteString elements to the given file path.
Creates a Sink which writes incoming ByteString elements to the given file path. Overwrites existing files by truncating their contents as default.
Materializes a Future of IOResult that will be completed with the size of the file (in bytes) at the streams completion, and a possible exception if IO operation was not completed successfully.
This source is backed by an Actor which will use the dedicated
akka.stream.blocking-io-dispatcher
, unless configured otherwise by using ActorAttributes.- f
the file path to write to
- options
File open options, see java.nio.file.StandardOpenOption, defaults to Set(WRITE, CREATE)
- startPosition
the start position to write to
-
def
toPath(f: Path, options: Set[OpenOption] = ...): Sink[ByteString, Future[IOResult]]
Creates a Sink which writes incoming ByteString elements to the given file path.
Creates a Sink which writes incoming ByteString elements to the given file path. Overwrites existing files by truncating their contents as default.
Materializes a Future of IOResult that will be completed with the size of the file (in bytes) at the streams completion, and a possible exception if IO operation was not completed successfully.
This source is backed by an Actor which will use the dedicated
akka.stream.blocking-io-dispatcher
, unless configured otherwise by using akka.stream.ActorAttributes.- f
the file path to write to
- options
File open options, see java.nio.file.StandardOpenOption, defaults to Set(WRITE, TRUNCATE_EXISTING, CREATE)
Deprecated Value Members
-
def
fromFile(f: File, chunkSize: Int = 8192): Source[ByteString, Future[IOResult]]
Creates a Source from a files contents.
Creates a Source from a files contents. Emitted elements are
chunkSize
sized akka.util.ByteString elements, except the final element, which will be up tochunkSize
in size.You can configure the default dispatcher for this Source by changing the
akka.stream.blocking-io-dispatcher
or set it for a given Source by using akka.stream.ActorAttributes.It materializes a Future of IOResult containing the number of bytes read from the source file upon completion, and a possible exception if IO operation was not completed successfully.
- f
the file to read from
- chunkSize
the size of each read operation, defaults to 8192
- Annotations
- @deprecated
- Deprecated
(Since version 2.4.5) Use
fromPath
instead
-
def
toFile(f: File, options: Set[OpenOption] = ...): Sink[ByteString, Future[IOResult]]
Creates a Sink which writes incoming ByteString elements to the given file.
Creates a Sink which writes incoming ByteString elements to the given file. Overwrites existing files by truncating their contents as default.
Materializes a Future of IOResult that will be completed with the size of the file (in bytes) at the streams completion, and a possible exception if IO operation was not completed successfully.
This source is backed by an Actor which will use the dedicated
akka.stream.blocking-io-dispatcher
, unless configured otherwise by using akka.stream.ActorAttributes.- f
the file to write to
- options
File open options, see java.nio.file.StandardOpenOption, defaults to Set(WRITE, TRUNCATE_EXISTING, CREATE)
- Annotations
- @deprecated
- Deprecated
(Since version 2.4.5) Use
toPath
instead