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. final case class Fatal(state: UnhealthyState = UnhealthyState()) extends ComponentHealthState with HasUnhealthyState with Product with Serializable

    Used to indicate liveness problem, when the node should be restarted externally

    Used to indicate liveness problem, when the node should be restarted externally

    state

    data

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

    Ok state

  6. 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

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

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

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

    Definition Classes
    ShowUtil
  9. implicit class ShowLengthLimitedStringSyntax extends StringOperators
    Definition Classes
    ShowUtil
  10. implicit class ShowLengthLimitedStringWrapperSyntax extends StringOperators
    Definition Classes
    ShowUtil
  11. implicit class ShowOptionSyntax[T] extends AnyRef
    Definition Classes
    ShowUtil
  12. implicit class ShowProductSyntax extends AnyRef
    Definition Classes
    ShowUtil
    Annotations
    @SuppressWarnings()
  13. implicit class ShowStringSyntax extends StringOperators
    Definition Classes
    ShowUtil
  14. 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
  15. 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() @IntrinsicCandidate()
  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. def fatal(description: String): Fatal
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. implicit val prettyComponentHealthState: Pretty[ComponentHealthState]
  21. implicit final def showInterpolator(sc: StringContext): ShowInterpolator
    Definition Classes
    ShowSyntax
  22. 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
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. implicit def toShow[A](target: A)(implicit tc: Show[A]): Ops[A]
    Definition Classes
    ToShowOps
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. object Degraded extends Serializable
  30. object Failed extends Serializable
  31. object HasUnhealthyState
  32. object Ok extends Serializable
  33. object Unhealthy
  34. 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