Packages

trait Runtime[+R] extends AnyRef

A Runtime[R] is capable of executing tasks within an environment R.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Runtime
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def environment: ZEnvironment[R]

    The environment of the runtime.

  2. abstract def runtimeConfig: RuntimeConfig

    The configuration of the runtime, which provides the essential capabilities necessary to bootstrap execution of tasks.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def as[R1](r1: ZEnvironment[R1]): Runtime[R1]

    Constructs a new Runtime with the specified new environment.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def map[R1](f: (ZEnvironment[R]) ⇒ ZEnvironment[R1]): Runtime[R1]

    Constructs a new Runtime by mapping the environment.

  14. def mapRuntimeConfig(f: (RuntimeConfig) ⇒ RuntimeConfig): Runtime[R]

    Constructs a new Runtime by mapping the runtime configuration.

  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def run[E, A](zio: ZIO[R, E, A])(implicit trace: ZTraceElement): IO[E, A]

    Runs the effect "purely" through an async boundary.

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

  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def unsafeRun[E, A](zio: ZIO[R, E, A])(implicit trace: ZTraceElement): A

    Executes the effect synchronously, failing with zio.FiberFailure if there are any errors.

    Executes the effect synchronously, failing with zio.FiberFailure if there are any errors. May fail on Scala.js if the effect cannot be entirely run synchronously.

    This method is effectful and should only be done at the edges of your program.

  22. final def unsafeRunAsync[E, A](zio: ZIO[R, E, A])(implicit trace: ZTraceElement): Unit

    Executes the effect asynchronously, discarding the result of execution.

    Executes the effect asynchronously, discarding the result of execution.

    This method is effectful and should only be invoked at the edges of your program.

  23. final def unsafeRunAsyncCancelable[E, A](zio: ZIO[R, E, A])(k: (Exit[E, A]) ⇒ Any)(implicit trace: ZTraceElement): (FiberId) ⇒ Exit[E, A]

    Executes the effect asynchronously, eventually passing the exit value to the specified callback.

    Executes the effect asynchronously, eventually passing the exit value to the specified callback. It returns a callback, which can be used to interrupt the running execution.

    This method is effectful and should only be invoked at the edges of your program.

  24. final def unsafeRunAsyncWith[E, A](zio: ZIO[R, E, A])(k: (Exit[E, A]) ⇒ Any)(implicit trace: ZTraceElement): Unit

    Executes the effect asynchronously, eventually passing the exit value to the specified callback.

    Executes the effect asynchronously, eventually passing the exit value to the specified callback.

    This method is effectful and should only be invoked at the edges of your program.

  25. final def unsafeRunSync[E, A](zio0: ZIO[R, E, A])(implicit trace: ZTraceElement): Exit[E, A]

    Executes the effect asynchronously, eventually passing the exit value to the specified callback.

    Executes the effect asynchronously, eventually passing the exit value to the specified callback. It returns a callback, which can be used to interrupt the running execution.

    This method is effectful and should only be invoked at the edges of your program.

  26. final def unsafeRunTask[A](task: RIO[R, A])(implicit trace: ZTraceElement): A

    Executes the Task/RIO effect synchronously, failing with the original Throwable on both Cause.Fail and Cause.Die.

    Executes the Task/RIO effect synchronously, failing with the original Throwable on both Cause.Fail and Cause.Die. In addition, appends a new element to the Throwables "caused by" chain, with this Cause "pretty printed" (in stackless mode) as the message. May fail on Scala.js if the effect cannot be entirely run synchronously.

    This method is effectful and should only be done at the edges of your program.

  27. final def unsafeRunToFuture[E <: Throwable, A](zio: ZIO[R, E, A])(implicit trace: ZTraceElement): CancelableFuture[A]

    Runs the IO, returning a Future that will be completed when the effect has been executed.

    Runs the IO, returning a Future that will be completed when the effect has been executed.

    This method is effectful and should only be used at the edges of your program.

  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. def withBlockingExecutor(e: Executor): Runtime[R]

    Constructs a new Runtime with the specified blocking executor.

  32. def withExecutor(e: Executor): Runtime[R]

    Constructs a new Runtime with the specified executor.

  33. def withFatal(f: (Throwable) ⇒ Boolean): Runtime[R]

    Constructs a new Runtime with the specified fatal predicate.

  34. def withReportFatal(f: (Throwable) ⇒ Nothing): Runtime[R]

    Constructs a new Runtime with the fatal error reporter.

Deprecated Value Members

  1. def mapPlatform(f: (Platform) ⇒ Platform): Runtime[R]

    Constructs a new Runtime by mapping the platform.

    Constructs a new Runtime by mapping the platform.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapRuntimeConfig

  2. def platform: Platform

    The platform of the runtime, which provides the essential capabilities necessary to bootstrap execution of tasks.

    The platform of the runtime, which provides the essential capabilities necessary to bootstrap execution of tasks.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use runtimeConfig

Inherited from AnyRef

Inherited from Any

Ungrouped