object CurrentClusterState extends AbstractFunction5[SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]], CurrentClusterState] with Serializable
- Source
- ClusterEvent.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CurrentClusterState
- Serializable
- AbstractFunction5
- Function5
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- 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()
- def curried: (SortedSet[Member]) => (Set[Member]) => (Set[Address]) => (Option[Address]) => (Map[String, Option[Address]]) => CurrentClusterState
- Definition Classes
- Function5
- Annotations
- @unspecialized()
- def toString(): String
- Definition Classes
- Function5 → AnyRef → Any
- def tupled: ((SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]])) => CurrentClusterState
- Definition Classes
- Function5
- Annotations
- @unspecialized()
- def unapply(cs: CurrentClusterState): Option[(SortedSet[Member], Set[Member], Set[Address], Option[Address], Map[String, Option[Address]])]