Object/Trait

zio

RuntimeFlag

Related Docs: trait RuntimeFlag | package zio

Permalink

object RuntimeFlag

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RuntimeFlag
  2. AnyRef
  3. 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. object CooperativeYielding extends RuntimeFlag with Product with Serializable

    Permalink

    The cooperative yielding flag determines whether the ZIO runtime will yield to another fiber.

  5. object CurrentFiber extends RuntimeFlag with Product with Serializable

    Permalink

    The current fiber flag determines whether or not the ZIO runtime system will store the current fiber inside a ThreadLocal whenever a fiber begins executing on a thread.

    The current fiber flag determines whether or not the ZIO runtime system will store the current fiber inside a ThreadLocal whenever a fiber begins executing on a thread. Use of this flag will negatively impact performance, but is essential where interop with ThreadLocal is required.

  6. object FiberRoots extends RuntimeFlag with Product with Serializable

    Permalink

    The fiber roots flag determines whether or not the ZIO runtime system will keep track of all fiber roots.

    The fiber roots flag determines whether or not the ZIO runtime system will keep track of all fiber roots. Use of this flag will negatively impact performance, but is required in order for fiber dumps functionality.

  7. object Interruption extends RuntimeFlag with Product with Serializable

    Permalink

    The interruption flag determines whether or not the ZIO runtime system will interrupt a fiber.

  8. object OpLog extends RuntimeFlag with Product with Serializable

    Permalink

    The op log flag determines whether or not the ZIO runtime system will attempt to log all operations of the ZIO runtime.

    The op log flag determines whether or not the ZIO runtime system will attempt to log all operations of the ZIO runtime. Use of this flag will negatively impact performance and generate massive volumes of ultra-fine debug logs. Only recommended for debugging.

  9. object OpSupervision extends RuntimeFlag with Product with Serializable

    Permalink

    The op supervision flag determines whether or not the IO runtime system will supervise all operations of the ZIO runtime.

    The op supervision flag determines whether or not the IO runtime system will supervise all operations of the ZIO runtime. Use of this flag will negatively impact performance, but is required for some operations, such as profiling.

  10. object RuntimeMetrics extends RuntimeFlag with Product with Serializable

    Permalink

    The runtime metrics flag determines whether or not the ZIO runtime system will collect metrics about the ZIO runtime.

    The runtime metrics flag determines whether or not the ZIO runtime system will collect metrics about the ZIO runtime. Use of this flag will have a very small negative impact on performance, but generates very helpful operational insight into running ZIO applications that can be exported to Prometheus or other tools via ZIO Metrics.

  11. object WindDown extends RuntimeFlag with Product with Serializable

    Permalink

    The wind down flag determines whether the ZIO runtime system will execute effects in wind-down mode.

    The wind down flag determines whether the ZIO runtime system will execute effects in wind-down mode. In wind-down mode, even if interruption is enabled and a fiber has been interrupted, the fiber will continue its execution uninterrupted.

  12. lazy val all: Set[RuntimeFlag]

    Permalink
  13. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped