HealthCheck

public protocol HealthCheck

Health check classes should extend this protocol to provide concrete implementations.

  • Name for the health check.

    Declaration

    Swift

    var name: String { get }
  • Description for the health check.

    Declaration

    Swift

    var description: String { get }
  • Performs the health check test.

    Declaration

    Swift

    func evaluate() -> State