Trait/Object

zio

Runtime

Related Docs: object Runtime | package zio

Permalink

trait Runtime[+R] extends AnyRef

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

Linear Supertypes
Known Subclasses
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 val Environment: R

    Permalink

    The environment of the runtime.

  2. abstract val Platform: Platform

    Permalink

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

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def as[R1](r1: R1): Runtime[R1]

    Permalink

    Constructs a new Runtime with the specified new environment.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def map[R1](f: (R) ⇒ R1): Runtime[R1]

    Permalink

    Constructs a new Runtime by mapping the environment.

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

    Permalink

    Constructs a new Runtime by mapping the platform.

  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def unsafeRun[E, A](zio: ⇒ ZIO[R, E, A]): A

    Permalink

    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.

  21. final def unsafeRunAsync[E, A](zio: ⇒ ZIO[R, E, A])(k: (Exit[E, A]) ⇒ Unit): Unit

    Permalink

    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.

  22. final def unsafeRunAsync_[E, A](zio: ZIO[R, E, A]): Unit

    Permalink

    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 unsafeRunSync[E, A](zio: ⇒ ZIO[R, E, A]): Exit[E, A]

    Permalink

    Executes the effect synchronously.

    Executes the effect synchronously. May fail on Scala.js if the effect cannot be entirely run synchronously.

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

  24. final def unsafeRunToFuture[E <: Throwable, A](io: ZIO[R, E, A]): Future[A]

    Permalink

    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.

  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def withExecutor(e: Executor): Runtime[R]

    Permalink

    Constructs a new Runtime with the specified executor.

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

    Permalink

    Constructs a new Runtime with the specified fatal predicate.

  30. final def withReportFailure(f: (Cause[_]) ⇒ Unit): Runtime[R]

    Permalink

    Constructs a new Runtime with the specified error reporter.

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

    Permalink

    Constructs a new Runtime with the fatal error reporter.

  32. final def withTracing(t: Tracing): Runtime[R]

    Permalink

    Constructs a new Runtime with the specified tracer and tracing configuration.

  33. final def withTracingConfig(config: TracingConfig): Runtime[R]

    Permalink

    Constructs a new Runtime with the specified tracing configuration.

Deprecated Value Members

  1. final def const[R1](r1: R1): Runtime[R1]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use as

Inherited from AnyRef

Inherited from Any

Ungrouped