Sink
Represents everything that can receive an output from a scala.sys.process.ProcessBuilder.
Attributes
- Source
- ProcessBuilder.scala
- Graph
-
- Supertypes
- Known subtypes
-
trait FileBuildertrait ProcessBuilder
Members list
Value members
Abstract methods
Attributes
- Source
- ProcessBuilder.scala
Concrete methods
Reads the given file into the input stream of this process.
Reads the given file into the input stream of this process.
Value parameters
- f
-
the file to read from as input
Attributes
- Returns
-
a
ProcessBuilderthat reads input fromf - Source
- ProcessBuilder.scala
Reads the given URL into the input stream of this process.
Reads the given URL into the input stream of this process.
Value parameters
- f
-
the
URLto read from as input
Attributes
- Returns
-
a
ProcessBuilderthat reads input fromf - Source
- ProcessBuilder.scala
Reads the given InputStream into the input stream of this process. The argument is call-by-name, so the stream is recreated, read, and closed each time this process is executed.
Reads the given InputStream into the input stream of this process. The argument is call-by-name, so the stream is recreated, read, and closed each time this process is executed.
Value parameters
- in
-
the input stream to read from, created anew for each execution
Attributes
- Returns
-
a
ProcessBuilderthat reads input fromin - Source
- ProcessBuilder.scala
Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.
Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.
Value parameters
- b
-
the process builder whose output will be used as input to this process
Attributes
- Returns
-
a
ProcessBuilderthat pipesb's output to this process - Source
- ProcessBuilder.scala