sealed trait Process[F[_]] extends AnyRef
- Source
- Process.scala
- Alphabetic
- By Inheritance
- Process
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def exitValue: F[Int]
Fiber blocks until the process exits, then returns the exit value.
Fiber blocks until the process exits, then returns the exit value. If the process has already exited then the exit value is available immediately.
- abstract def isAlive: F[Boolean]
- abstract def stderr: Stream[F, Byte]
A
Streamthat reads fromstderrof the process.A
Streamthat reads fromstderrof the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process. - abstract def stdin: Pipe[F, Byte, Nothing]
A
Pipethat writes tostdinof the process.A
Pipethat writes tostdinof the process. The resulting stream should be compiled at most once, and interrupting or otherwise canceling a write-in-progress may kill the process. - abstract def stdout: Stream[F, Byte]
A
Streamthat reads fromstdoutof the process.A
Streamthat reads fromstdoutof the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process.
Concrete 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])