final case class Platform(blockingExecutor: Executor, executor: Executor, tracing: Tracing, fatal: (Throwable) => Boolean, reportFatal: (Throwable) => Nothing, reportFailure: (Cause[Any]) => Unit, supervisor: Supervisor[Any], enableCurrentFiber: Boolean) extends Product with Serializable
A Platform provides the minimum capabilities necessary to bootstrap
execution of ZIO tasks.
- Self Type
- Platform
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Platform
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val blockingExecutor: Executor
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val enableCurrentFiber: Boolean
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val executor: Executor
- val fatal: (Throwable) => Boolean
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val reportFailure: (Cause[Any]) => Unit
- val reportFatal: (Throwable) => Nothing
- val supervisor: Supervisor[Any]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val tracing: Tracing
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()
- def withBlockingExecutor(e: Executor): Platform
- def withExecutor(e: Executor): Platform
- def withFatal(f: (Throwable) => Boolean): Platform
- def withReportFailure(f: (Cause[Any]) => Unit): Platform
- def withReportFatal(f: (Throwable) => Nothing): Platform
- def withSupervisor(s0: Supervisor[Any]): Platform
- def withTracing(t: Tracing): Platform
- def withTracingConfig(config: TracingConfig): Platform