object CurrentClusterState extends AbstractFunction5[SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]], CurrentClusterState] with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CurrentClusterState
  2. Serializable
  3. AbstractFunction5
  4. Function5
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(members: SortedSet[Member] = immutable.SortedSet.empty, unreachable: Set[Member] = Set.empty, seenBy: Set[Address] = Set.empty, leader: Option[Address] = None, roleLeaderMap: Map[String, Option[Address]] = Map.empty): CurrentClusterState
    Definition Classes
    CurrentClusterState → Function5
    Annotations
    @nowarn()
  2. def curried: (SortedSet[Member]) => (Set[Member]) => (Set[Address]) => (Option[Address]) => (Map[String, Option[Address]]) => CurrentClusterState
    Definition Classes
    Function5
    Annotations
    @unspecialized()
  3. def toString(): String
    Definition Classes
    Function5 → AnyRef → Any
  4. def tupled: ((SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]])) => CurrentClusterState
    Definition Classes
    Function5
    Annotations
    @unspecialized()
  5. def unapply(cs: CurrentClusterState): Option[(SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]])]