The environment of the runtime.
The platform of the runtime, which provides the essential capabilities necessary to bootstrap execution of tasks.
Constructs a new Runtime with the specified new environment.
Constructs a new Runtime by mapping the environment.
Constructs a new Runtime by mapping the platform.
Executes the effect synchronously, failing with scalaz.zio.FiberFailure if there are any errors.
Executes the effect synchronously, failing with scalaz.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.
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.
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.
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.
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.
Constructs a new Runtime with the specified executor.
Constructs a new Runtime with the specified non-fatal predicate.
Constructs a new Runtime with the specified error reporter.
Constructs a new Runtime with the fatal error reporter.
A
Runtime[R]is capable of executing tasks within an environmentR.