actor_system 0.2.0 actor_system: ^0.2.0 copied to clipboard
An implementation of the actor model in the Dart language. An actor processes only one message at a time, even if the processing is asynchronous.
Examples #
Async #
Shows that only one message is processed in a time, even if the processing of the message is asynchronous.
Base #
A base example of how to use the package to create actors and process messages.
Builder #
Shows the usage of a builder to create an actor.
Cluster #
Shows how to create a cluster actor systems.
Exception #
Shows how exceptions during the processing of a message are handled.
External #
Shows how the create and lookup actors outside of a actor system. This can be used to connect multiple actor systems.
Factory #
Shows how to register a global actor factory. A factory is selected based on the path an actor is created on.