object ComponentHealthState extends ShowUtil

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ComponentHealthState
  2. ShowUtil
  3. ShowSyntax
  4. ToShowOps
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Degraded(state: UnhealthyState = UnhealthyState()) extends ComponentHealthState with HasUnhealthyState with Product with Serializable

    Degraded state, as in not fully but still functional.

    Degraded state, as in not fully but still functional. A degraded component will NOT cause a service to report NOT_SERVING

    state

    data

  2. final case class Failed(state: UnhealthyState = UnhealthyState()) extends ComponentHealthState with HasUnhealthyState with Product with Serializable

    The component has failed, any service that depends on it will report NOT_SERVING

    The component has failed, any service that depends on it will report NOT_SERVING

    state

    data

  3. trait HasUnhealthyState extends AnyRef
  4. final case class Ok(description: Option[String] = None) extends ComponentHealthState with Product with Serializable

    Ok state

  5. final case class UnhealthyState(description: Option[String] = None, error: Option[BaseError] = None, elc: Option[ErrorLoggingContext] = None) extends Product with Serializable

    Unhealthy state data

    Unhealthy state data

    description

    description of the state

    error

    associated canton error

  6. implicit class ShowAnyRefSyntax extends AnyRef
    Definition Classes
    ShowUtil
  7. implicit class ShowEitherSyntax[L, R] extends AnyRef

    Enables the syntax show"${myEither.showMerged}".

    Enables the syntax show"${myEither.showMerged}".

    Definition Classes
    ShowUtil
  8. implicit class ShowLengthLimitedStringSyntax extends StringOperators
    Definition Classes
    ShowUtil
  9. implicit class ShowLengthLimitedStringWrapperSyntax extends StringOperators
    Definition Classes
    ShowUtil
  10. implicit class ShowOptionSyntax[T] extends AnyRef
    Definition Classes
    ShowUtil
  11. implicit class ShowProductSyntax extends AnyRef
    Definition Classes
    ShowUtil
    Annotations
    @SuppressWarnings()
  12. implicit class ShowStringSyntax extends StringOperators
    Definition Classes
    ShowUtil
  13. implicit class ShowTraversableSyntax[T] extends AnyRef

    Enables syntax like show"Found several elements: ${myCollection.mkShow()}".

    Enables syntax like show"Found several elements: ${myCollection.mkShow()}".

    Definition Classes
    ShowUtil
  14. abstract class StringOperators extends AnyRef

    Enables syntax like show"This is a string: ${myString.doubleQuoted}" and show"This is a hash: ${myHash.readableHash}".

    Enables syntax like show"This is a string: ${myString.doubleQuoted}" and show"This is a hash: ${myHash.readableHash}".

    Definition Classes
    ShowUtil

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val NotInitializedState: ComponentHealthState
  5. val ShutdownState: ComponentHealthState
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. implicit val componentHealthStateEncoder: Encoder[ComponentHealthState]
  9. def degraded(description: String): Degraded
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def failed(description: String): Failed
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. implicit val prettyComponentHealthState: Pretty[ComponentHealthState]
  20. implicit final def showInterpolator(sc: StringContext): ShowInterpolator
    Definition Classes
    ShowSyntax
  21. implicit def showPretty[T](implicit arg0: Pretty[T]): Show[T]

    Enables the syntax show"This object is pretty: $myPrettyType".

    Enables the syntax show"This object is pretty: $myPrettyType".

    Definition Classes
    ShowUtil
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. implicit def toShow[A](target: A)(implicit tc: Show[A]): Ops[A]
    Definition Classes
    ToShowOps
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. object Degraded extends Serializable
  29. object Failed extends Serializable
  30. object HasUnhealthyState
  31. object Ok extends Serializable
  32. object Unhealthy
  33. object UnhealthyState extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from ShowUtil

Inherited from ShowSyntax

Inherited from ToShowOps

Inherited from AnyRef

Inherited from Any

Ungrouped