Proxy

class Proxy[+R](underlying: Runtime[R]) extends Runtime[R]
trait Runtime[R]
class Object
trait Matchable
class Any

Type members

Inherited classlikes

trait UnsafeAPI
Inherited from:
Runtime

Value members

Concrete methods

The environment of the runtime.

The environment of the runtime.

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.

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.

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.

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.

Inherited from:
Runtime
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.

Inherited from:
Runtime