case class WaitUntilReadyOptions(serviceTypes: Set[ServiceType] = WaitUntilReadyOptions.AllServiceTypes, desiredState: ClusterState = ClusterState.ONLINE) extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- WaitUntilReadyOptions
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new WaitUntilReadyOptions(serviceTypes: Set[ServiceType] = WaitUntilReadyOptions.AllServiceTypes, desiredState: ClusterState = ClusterState.ONLINE)
Value Members
- 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.
- val desiredState: ClusterState
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def productIterator: Iterator[Any]
- Definition Classes
- Product
- 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.
- val serviceTypes: Set[ServiceType]