actor_cluster 0.2.1
actor_cluster: ^0.2.1 copied to clipboard
Connects multiple actor systems into a cluster. Actor systems can run in different isolates and processes.
Changelog #
0.2.1 #
- Library
actor_systemis exported by this library.
0.2.0 #
- BREAKING CHANGE: based on version 0.7.2 of package
actor_system. - BREAKING CHANGE: Splitted configuration into separate parts for cluster and node.
- Node selection for actors to be created is now based on node metrics.
- Cluster nodes can be configured with tags. For each tag the number of required nodes can be configured. If configured, the cluster will only start, if all required tags are available.
- The
pathparameter ofcreateActor()can now contain a fragment. The fragment is used as a node tag. The actor will be created on a node tagged with the given tag.
0.1.0 #
- Based on library
actor_clusterof version0.3.0of packageactor_system. - BREAKING CHANGE: Renamed
PrepareNodeSystemtoAddActorFactories. - BREAKING CHANGE: Renamed parameter
prepareNodeSystemofActorCluster.init()toaddActorFactories. - BREAKING CHANGE: Renamed parameter
afterClusterInitofActorCluster.init()toinitCluster. - BREAKING CHANGE:
initClusteris now only called on leader node.