trait ManagedApp extends BootstrapRuntime
- Self Type
- ManagedApp
- Alphabetic
- By Inheritance
- ManagedApp
- BootstrapRuntime
- Runtime
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def as[R1](r1: R1): Runtime[R1]
Constructs a new
Runtime
with the specified new environment.Constructs a new
Runtime
with the specified new environment.- Definition Classes
- Runtime
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def environment: zio.ZEnv
The environment of the runtime.
The environment of the runtime.
- Definition Classes
- BootstrapRuntime → Runtime
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def main(args: Array[String]): Unit
- def map[R1](f: (zio.ZEnv) => R1): Runtime[R1]
Constructs a new
Runtime
by mapping the environment.Constructs a new
Runtime
by mapping the environment.- Definition Classes
- Runtime
- def mapPlatform(f: (Platform) => Platform): Runtime[zio.ZEnv]
Constructs a new
Runtime
by mapping the platform.Constructs a new
Runtime
by mapping the platform.- Definition Classes
- Runtime
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- 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.
- Definition Classes
- BootstrapRuntime → Runtime
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def unsafeRun[E, A](zio: => ZIO[zio.ZEnv, E, A]): 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.
- Definition Classes
- Runtime
- final def unsafeRunAsync[E, A](zio: => ZIO[zio.ZEnv, E, A])(k: (Exit[E, A]) => Any): 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.
- Definition Classes
- Runtime
- final def unsafeRunAsyncCancelable[E, A](zio: => ZIO[zio.ZEnv, E, A])(k: (Exit[E, A]) => Any): (Id) => 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.
- Definition Classes
- Runtime
- final def unsafeRunAsync_[E, A](zio: ZIO[zio.ZEnv, E, A]): 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.
- Definition Classes
- Runtime
- final def unsafeRunSync[E, A](zio: => ZIO[zio.ZEnv, E, A]): Exit[E, A]
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.
- Definition Classes
- Runtime
- final def unsafeRunTask[A](task: => RIO[zio.ZEnv, A]): 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 suppressed exceptions of theThrowable
, with thisCause
"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
- final def unsafeRunToFuture[E <: Throwable, A](zio: ZIO[zio.ZEnv, E, A]): 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.
- Definition Classes
- Runtime
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withExecutor(e: Executor): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the specified executor.Constructs a new
Runtime
with the specified executor.- Definition Classes
- Runtime
- def withFatal(f: (Throwable) => Boolean): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the specified fatal predicate.Constructs a new
Runtime
with the specified fatal predicate.- Definition Classes
- Runtime
- def withReportFailure(f: (Cause[Any]) => Unit): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the specified error reporter.Constructs a new
Runtime
with the specified error reporter.- Definition Classes
- Runtime
- def withReportFatal(f: (Throwable) => Nothing): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the fatal error reporter.Constructs a new
Runtime
with the fatal error reporter.- Definition Classes
- Runtime
- def withTracing(t: Tracing): Runtime[zio.ZEnv]
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
- def withTracingConfig(config: TracingConfig): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the specified tracing configuration.Constructs a new
Runtime
with the specified tracing configuration.- Definition Classes
- Runtime
- def withYieldOnStart(cond: Boolean): Runtime[zio.ZEnv]
Constructs a new
Runtime
with the specified yield strategy.Constructs a new
Runtime
with the specified yield strategy.- Definition Classes
- Runtime