c

akka.cluster.typed

JoinSeedNodes

final case class JoinSeedNodes(seedNodes: Seq[Address]) extends ClusterCommand with Product with Serializable

Scala API: Join the specified seed nodes without defining them in config. Especially useful from tests when Addresses are unknown before startup time.

An actor system can only join a cluster once. Additional attempts will be ignored. When it has successfully joined it must be restarted to be able to join another cluster or to join the same cluster again.

Source
Cluster.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JoinSeedNodes
  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 JoinSeedNodes(seedNodes: [Address])

    Java API: Join the specified seed nodes without defining them in config.

    Java API: Join the specified seed nodes without defining them in config. Especially useful from tests when Addresses are unknown before startup time.

    An actor system can only join a cluster once. Additional attempts will be ignored. When it has successfully joined it must be restarted to be able to join another cluster or to join the same cluster again.

    Creates a defensive copy of the list to ensure immutability.

  2. new JoinSeedNodes(seedNodes: [Address])

Value Members

  1. def productElementNames: Iterator[String]
    Definition Classes
    Product
  2. val seedNodes: [Address]