actor_cluster 0.5.5
actor_cluster: ^0.5.5 copied to clipboard
Connects multiple actor systems into a cluster. Actor systems can run in different isolates and processes.
Changelog #
0.5.5 #
- Based on version 0.9.6 of package
actor_system.
0.5.4 #
- Based on version 0.9.5 of package
actor_system.
0.5.3 #
- Based on version 0.9.4 of package
actor_system. - Information about of affected actor and message in
ActorStoppedexception.
0.5.2 #
- Based on version 0.9.2 of package
actor_system. - Internal optimizations.
0.5.1 #
- Based on version 0.9.1 of package
actor_system.
0.5.0 #
- BREAKING CHANGE: based on version 0.9.0 of package
actor_system.
0.4.3 #
- Removed unintentional
print()call.
0.4.2 #
readClusterConfigFromYaml()andreadNodeConfigFromYaml()now have an additional parameterkeyHierarchyto read the config from a subnode.
0.4.1 #
- Bugfix: node selection based on load could lead to select no node.
0.4.0 #
- BREAKING CHANGE: based on version 0.8.1 of package
actor_system.
0.3.0 #
- Removed parameter
onLogRecordfrom the constructor ofActorCluster. Use the new parameterinitWorkerIsolateinstead. - Added parameter
initWorkerIsolateto the constructor ofActorCluster. Use this callback to initialize the isolate of a worker.
0.2.2 #
- Library
actor_system_helperis exported by this library.
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.