EndpointConditions

final case class EndpointConditions(ready: Option[Boolean], serving: Option[Boolean], terminating: Option[Boolean])

EndpointConditions represents the current condition of an endpoint.

Source:
EndpointConditions.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

if ready has a value, transforms to the result of function

if ready has a value, transforms to the result of function

Source:
EndpointConditions.scala

if serving has a value, transforms to the result of function

if serving has a value, transforms to the result of function

Source:
EndpointConditions.scala

if terminating has a value, transforms to the result of function

if terminating has a value, transforms to the result of function

Source:
EndpointConditions.scala

Returns a new data with ready set to new value

Returns a new data with ready set to new value

Source:
EndpointConditions.scala

Returns a new data with serving set to new value

Returns a new data with serving set to new value

Source:
EndpointConditions.scala

Returns a new data with terminating set to new value

Returns a new data with terminating set to new value

Source:
EndpointConditions.scala

Inherited methods

Inherited from:
Product