forked from crystal-lang/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
Actors
technorama edited this page Sep 30, 2015
·
1 revision
- Actors are introduced using fibers.
- Messages may be sent to an actor and responses received using channels.
- Actors gain supervision trees
- Messages must be delivered at least once.
- An actor crashing may not lose other messages.
- Start integrating actors in to the base system.
- Signal handler & waitpid handler should run as actors with supervision.
- Make the main thread(s) run as an actor within the supervision tree.
- Actors are thread pools. The entire tree of threads is monitored.