final case class PekkoCluster[F[_]](system: ActorSystem[_], dispatcher: Dispatcher[F], cluster: Cluster, sharding: ClusterSharding)(implicit evidence$1: Async[F]) extends Product with Serializable
Actor system and cluster sharding extension as well as dispatcher tied to its resource scope.
- system
actor system
- dispatcher
effects dispatcher tied to the cluster resource scope
- cluster
cluster extension
- sharding
cluster sharding extension
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PekkoCluster
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PekkoCluster(system: ActorSystem[_], dispatcher: Dispatcher[F], cluster: Cluster, sharding: ClusterSharding)(implicit arg0: Async[F])
- system
actor system
- dispatcher
effects dispatcher tied to the cluster resource scope
- cluster
cluster extension
- sharding
cluster sharding extension
Value Members
- val cluster: Cluster
- val dispatcher: Dispatcher[F]
- def isMemberUp: F[Boolean]
Returns true if the cluster member is up.
Returns true if the cluster member is up. Can be used for readiness checks.
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val sharding: ClusterSharding
- val system: ActorSystem[_]