Packages

case class WaitUntilReadyOptions(serviceTypes: Set[ServiceType] = ..., desiredState: ClusterState = ClusterState.ONLINE) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WaitUntilReadyOptions
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WaitUntilReadyOptions(serviceTypes: Set[ServiceType] = ..., desiredState: ClusterState = ClusterState.ONLINE)

Value Members

  1. def desiredState(value: ClusterState): WaitUntilReadyOptions

    The cluster state to wait for, usually ONLINE.

    The cluster state to wait for, usually ONLINE.

    Defaults to ONLINE.

    returns

    a copy of this with the change applied, for chaining.

  2. val desiredState: ClusterState
  3. def serviceTypes(value: Set[ServiceType]): WaitUntilReadyOptions

    Changes the services that will be pinged.

    Changes the services that will be pinged.

    The default is an empty set, which will cause all services to be pinged.

    returns

    a copy of this with the change applied, for chaining.

  4. val serviceTypes: Set[ServiceType]