Proxy

zio.Runtime$.Proxy
class Proxy[+R](underlying: Runtime[R]) extends Runtime[R]

Attributes

Graph
Supertypes
trait Runtime[R]
class Object
trait Matchable
class Any

Members list

Concise view

Type members

Inherited classlikes

trait UnsafeAPI

Attributes

Inherited from:
Runtime
Graph
Supertypes
class Object
trait Matchable
class Any

Attributes

Inherited from:
Runtime
Graph
Supertypes
class Object
trait Matchable
class Any

Value members

Concrete methods

The environment of the runtime.

The environment of the runtime.

Attributes

The zio.FiberRefs that will be used for all effects executed by this runtime.

The zio.FiberRefs that will be used for all effects executed by this runtime.

Attributes

The zio.RuntimeFlags that will be used for all effects executed by this zio.Runtime.

The zio.RuntimeFlags that will be used for all effects executed by this zio.Runtime.

Attributes

Inherited methods

def mapEnvironment[R1](f: ZEnvironment[R] => ZEnvironment[R1]): Runtime[R1]

Constructs a new Runtime by mapping the environment.

Constructs a new Runtime by mapping the environment.

Attributes

Inherited from:
Runtime
final def run[E, A](zio: ZIO[R, E, A])(implicit trace: Trace): IO[E, A]

Runs the effect "purely" through an async boundary. Useful for testing.

Runs the effect "purely" through an async boundary. Useful for testing.

Attributes

Inherited from:
Runtime

Attributes

Inherited from:
Runtime
def withEnvironment[R1](r1: ZEnvironment[R1]): Runtime[R1]

Constructs a new Runtime with the specified new environment.

Constructs a new Runtime with the specified new environment.

Attributes

Inherited from:
Runtime