final case class SetAppVersionLater(appVersion: Future[util.Version]) extends ClusterCommand with Product with Serializable

Scala API: If the appVersion is read from an external system (e.g. Kubernetes) it can be defined after system startup but before joining by completing the appVersion Future. In that case, SetAppVersionLater should be sent before Join or JoinSeedNodes It's fine to send Join or JoinSeedNodes immediately afterwards (before the Future is completed. The join will then wait for the appVersion to be completed.

Source
Cluster.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SetAppVersionLater
  2. Serializable
  3. Product
  4. Equals
  5. ClusterCommand
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SetAppVersionLater(appVersion: [util.Version])

Value Members

  1. val appVersion: [util.Version]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product