Trait

zio

BootstrapRuntime

Related Doc: package zio

Permalink

trait BootstrapRuntime extends ZBootstrapRuntime[ZEnv]

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BootstrapRuntime
  2. ZBootstrapRuntime
  3. Runtime
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def as[R1](r1: R1): Runtime[R1]

    Permalink

    Constructs a new Runtime with the specified new environment.

    Constructs a new Runtime with the specified new environment.

    Definition Classes
    Runtime
  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 defaultUnsafeRunSync[E, A](zio: ⇒ ZIO[zio.ZEnv, E, A]): Exit[E, A]

    Permalink
    Attributes
    protected
    Definition Classes
    Runtime
  8. def environment: zio.ZEnv

    Permalink

    The environment of the runtime.

    The environment of the runtime.

    Definition Classes
    BootstrapRuntimeRuntime
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  15. def map[R1](f: (zio.ZEnv) ⇒ R1): Runtime[R1]

    Permalink

    Constructs a new Runtime by mapping the environment.

    Constructs a new Runtime by mapping the environment.

    Definition Classes
    Runtime
  16. def mapPlatform(f: (Platform) ⇒ Platform): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime by mapping the platform.

    Constructs a new Runtime by mapping the platform.

    Definition Classes
    Runtime
  17. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  20. def platform: Platform

    Permalink

    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.

    Definition Classes
    ZBootstrapRuntimeRuntime
  21. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  23. def tryFastUnsafeRunSync[E, A](zio: ZIO[zio.ZEnv, E, A], stack: Int): Exit[E, A]

    Permalink
    Attributes
    protected
    Definition Classes
    Runtime
  24. final def unsafeRun[E, A](zio: ⇒ ZIO[zio.ZEnv, 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.

    Definition Classes
    Runtime
  25. final def unsafeRunAsync[E, A](zio: ZIO[zio.ZEnv, 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.

    Definition Classes
    Runtime
  26. final def unsafeRunAsyncCancelable[E, A](zio: ⇒ ZIO[zio.ZEnv, E, A])(k: (Exit[E, A]) ⇒ Any): (Id) ⇒ Exit[E, A]

    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. 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.

    Definition Classes
    Runtime
  27. final def unsafeRunAsyncWith[E, A](zio: ⇒ ZIO[zio.ZEnv, E, A])(k: (Exit[E, A]) ⇒ Any): 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.

    Definition Classes
    Runtime
  28. final def unsafeRunSync[E, A](zio0: ⇒ ZIO[zio.ZEnv, E, A]): Exit[E, A]

    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. 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.

    Definition Classes
    Runtime
  29. final def unsafeRunTask[A](task: ⇒ RIO[zio.ZEnv, A]): A

    Permalink

    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.

    Definition Classes
    Runtime
  30. final def unsafeRunToFuture[E <: Throwable, A](zio: ZIO[zio.ZEnv, E, A]): CancelableFuture[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.

    Definition Classes
    Runtime
  31. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def withBlockingExecutor(e: Executor): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the specified blocking executor.

    Constructs a new Runtime with the specified blocking executor.

    Definition Classes
    Runtime
  35. def withExecutor(e: Executor): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the specified executor.

    Constructs a new Runtime with the specified executor.

    Definition Classes
    Runtime
  36. def withFatal(f: (Throwable) ⇒ Boolean): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the specified fatal predicate.

    Constructs a new Runtime with the specified fatal predicate.

    Definition Classes
    Runtime
  37. def withReportFailure(f: (Cause[Any]) ⇒ Unit): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the specified error reporter.

    Constructs a new Runtime with the specified error reporter.

    Definition Classes
    Runtime
  38. def withReportFatal(f: (Throwable) ⇒ Nothing): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the fatal error reporter.

    Constructs a new Runtime with the fatal error reporter.

    Definition Classes
    Runtime
  39. def withTracing(t: Tracing): Runtime[zio.ZEnv]

    Permalink

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

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

    Definition Classes
    Runtime
  40. def withTracingConfig(config: TracingConfig): Runtime[zio.ZEnv]

    Permalink

    Constructs a new Runtime with the specified tracing configuration.

    Constructs a new Runtime with the specified tracing configuration.

    Definition Classes
    Runtime

Inherited from ZBootstrapRuntime[zio.ZEnv]

Inherited from Runtime[zio.ZEnv]

Inherited from AnyRef

Inherited from Any

Ungrouped