FileProcessLogger
scala.sys.process.FileProcessLogger
class FileProcessLogger(file: File) extends ProcessLogger , Closeable , Flushable
A scala.sys.process.ProcessLogger that writes output to a file.
Attributes
- Source
- ProcessLogger.scala
- Graph
-
- Supertypes
-
trait Flushabletrait Closeabletrait AutoCloseabletrait ProcessLoggerclass Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
If a process is begun with one of these ProcessBuilder
methods:
If a process is begun with one of these ProcessBuilder
methods:
def !(log: ProcessLogger): Int
def !<(log: ProcessLogger): Int
The run will be wrapped in a call to buffer. This gives the logger an opportunity to set up and tear down buffering. At present the library implementations of ProcessLogger
simply execute the body unbuffered.
Attributes
- Source
- ProcessLogger.scala
Attributes
- Source
- ProcessLogger.scala
Will be called with each line read from the process error stream.
Will be called with each line read from the process error stream.
Attributes
- Source
- ProcessLogger.scala
Attributes
- Source
- ProcessLogger.scala
Will be called with each line read from the process output stream.
Will be called with each line read from the process output stream.
Attributes
- Source
- ProcessLogger.scala
In this article