object Process
- Alphabetic
- By Inheritance
- Process
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class ProcessImpl(command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[Unit], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[Unit], inputRedirection: Prox.InputRedirection) extends Prox.Process[Unit, Unit] with Prox.RedirectableOutput[[α$14$]ProcessImplO[α$14$]] with Prox.RedirectableError[[α$15$]ProcessImplE[α$15$]] with Prox.RedirectableInput[ProcessImplI] with Product with Serializable
Process with no streams bound
- case class ProcessImplE[E](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[Unit], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[E], inputRedirection: Prox.InputRedirection) extends Prox.Process[Unit, E] with Prox.RedirectableInput[ProcessImplIE[E]] with Prox.RedirectableOutput[[α$11$]ProcessImplOE[α$11$, E]] with Product with Serializable
Process with bound error streams
- case class ProcessImplI(command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[Unit], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[Unit], inputRedirection: Prox.InputRedirection) extends Prox.Process[Unit, Unit] with Prox.RedirectableOutput[[α$12$]ProcessImplIO[α$12$]] with Prox.RedirectableError[[α$13$]ProcessImplIE[α$13$]] with Product with Serializable
Process with bound input streams
- case class ProcessImplIE[E](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[Unit], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[E], inputRedirection: Prox.InputRedirection) extends Prox.Process[Unit, E] with Prox.RedirectableOutput[[α$9$]ProcessImplIOE[α$9$, E]] with Product with Serializable
Process with bound input and error streams
- case class ProcessImplIO[O](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[O], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[Unit], inputRedirection: Prox.InputRedirection) extends Prox.Process[O, Unit] with Prox.RedirectableError[[β$8$]ProcessImplIOE[O, β$8$]] with Product with Serializable
Process with bound input and output streams
- case class ProcessImplIOE[O, E](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[O], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[E], inputRedirection: Prox.InputRedirection) extends Prox.Process[O, E] with Product with Serializable
Process with bound input, output and error streams
- case class ProcessImplO[O](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[O], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[Unit], inputRedirection: Prox.InputRedirection) extends Prox.Process[O, Unit] with Prox.RedirectableError[[β$10$]ProcessImplOE[O, β$10$]] with Prox.RedirectableInput[ProcessImplIO[O]] with Product with Serializable
Process with bound output streams
- case class ProcessImplOE[O, E](command: String, arguments: List[String], workingDirectory: Option[Path], environmentVariables: Map[String, String], removedEnvironmentVariables: Set[String], outputRedirection: Prox.OutputRedirection, runOutputStream: (InputStream) => Prox.ProxIO[O], errorRedirection: Prox.OutputRedirection, runErrorStream: (InputStream) => Prox.ProxIO[E], inputRedirection: Prox.InputRedirection) extends Prox.Process[O, E] with Prox.RedirectableInput[ProcessImplIOE[O, E]] with Product with Serializable
Process with bound output and error streams
- type UnboundEProcess[O] = Prox.Process[O, Unit] with Prox.RedirectableError[[β$1$]Prox.Process[O, β$1$]]
Process with unbound error stream
- type UnboundIEProcess[O] = Prox.Process[O, Unit] with Prox.RedirectableInput[UnboundEProcess[O]] with Prox.RedirectableError[[β$3$]Prox.Process[O, β$3$] with Prox.RedirectableInput[Prox.Process[O, β$3$]]]
Process with unbound input and error streams
- type UnboundIOProcess[E] = Prox.Process[Unit, E] with Prox.RedirectableInput[UnboundOProcess[E]] with Prox.RedirectableOutput[[α$2$]Prox.Process[α$2$, E] with Prox.RedirectableInput[Prox.Process[α$2$, E]]]
Process with unbound input and output streams
- type UnboundIProcess[O, E] = Prox.Process[O, E] with Prox.RedirectableInput[Prox.Process[O, E]]
Process with unbound input stream
- type UnboundOEProcess = Prox.Process[Unit, Unit] with Prox.RedirectableOutput[[α$4$]Prox.Process[α$4$, Unit] with Prox.RedirectableError[[β$1$]Prox.Process[α$4$, β$1$]]] with Prox.RedirectableError[[α$5$]Prox.Process[Unit, α$5$] with Prox.RedirectableOutput[[α$0$]Prox.Process[α$0$, α$5$]]]
Process with unbound output and error streams
- type UnboundOProcess[E] = Prox.Process[Unit, E] with Prox.RedirectableOutput[[α$0$]Prox.Process[α$0$, E]]
Process with unbound output stream
- type UnboundProcess = Prox.Process[Unit, Unit] with Prox.RedirectableInput[UnboundOEProcess] with Prox.RedirectableOutput[[α$6$]Prox.Process[α$6$, Unit] with Prox.RedirectableInput[Prox.Process[α$6$, Unit] with Prox.RedirectableError[[β$1$]Prox.Process[α$6$, β$1$]]] with Prox.RedirectableError[[β$3$]Prox.Process[α$6$, β$3$] with Prox.RedirectableInput[Prox.Process[α$6$, β$3$]]]] with Prox.RedirectableError[[α$7$]Prox.Process[Unit, α$7$] with Prox.RedirectableInput[Prox.Process[Unit, α$7$] with Prox.RedirectableOutput[[α$0$]Prox.Process[α$0$, α$7$]]] with Prox.RedirectableOutput[[α$2$]Prox.Process[α$2$, α$7$] with Prox.RedirectableInput[Prox.Process[α$2$, α$7$]]]]
Process with unbound input, output and error streams
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(command: String, arguments: List[String] = List.empty): ProcessImpl
Defines a process to be executed
Defines a process to be executed
The process by default uses the standard input, output and error streams.
- command
Command to be executed
- arguments
Arguments for the command
- returns
the process specification
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()