Process

fs2.io.process.Process
sealed trait Process[F[_]]

Attributes

Source:
Process.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def exitValue: F[Int]

Fiber blocks until the process exits, then returns the exit value. If the process has already exited then the exit value is available immediately.

Fiber blocks until the process exits, then returns the exit value. If the process has already exited then the exit value is available immediately.

Attributes

Source:
Process.scala

Attributes

Source:
Process.scala
def stderr: Stream[F, Byte]

A Stream that reads from stderr of the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process.

A Stream that reads from stderr of the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process.

Attributes

Source:
Process.scala
def stdin: (F, Byte) => Nothing

A Pipe that writes to stdin of the process. The resulting stream should be compiled at most once, and interrupting or otherwise canceling a write-in-progress may kill the process.

A Pipe that writes to stdin of the process. The resulting stream should be compiled at most once, and interrupting or otherwise canceling a write-in-progress may kill the process.

Attributes

Source:
Process.scala
def stdout: Stream[F, Byte]

A Stream that reads from stdout of the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process.

A Stream that reads from stdout of the process. This stream should be compiled at most once, and interrupting or otherwise canceling a read-in-progress may kill the process.

Attributes

Source:
Process.scala