ProcessLikeConfiguration

io.github.vigoo.prox.CommonModule.ProcessLikeConfiguration

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait ProcessGroup[O, E]
class ProcessGroupImplIOE[O, E]
class ProcessGroupImplOE[O, E]
trait Process[O, E]
class ProcessImpl
class ProcessImplE[E]
class ProcessImplI
class ProcessImplIE[E]
class ProcessImplIO[O]
class ProcessImplIOE[O, E]
class ProcessImplO[O]
class ProcessImplOE[O, E]
Show all

Members list

Type members

Value members

Abstract methods

protected def applyConfiguration(workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String]): Self

Concrete methods

def `with`(nameValuePair: (String, String)): Self

Adds an environment variable to the process

Adds an environment variable to the process

Value parameters

nameValuePair

A pair of name and value

Attributes

Returns

a new process with the working directory set

def in(workingDirectory: Path): Self

Changes the working directory of the process

Changes the working directory of the process

Value parameters

workingDirectory

the working directory

Attributes

Returns

a new process with the working directory set

Use the inherited working directory of the process instead of an explicit one

Use the inherited working directory of the process instead of an explicit one

Attributes

Returns

a new process with the working directory cleared

def without(name: String): Self

Removes an environment variable from the process

Removes an environment variable from the process

Usable to remove variables inherited from the parent process.

Value parameters

name

Name of the environment variable

Attributes

Returns

a new process with the working directory set

Abstract fields

val environmentVariables: Map[String, String]
val removedEnvironmentVariables: Set[String]
val workingDirectory: Option[Path]