Another renumbering, so that all concurrent styles are bundled together

This commit is contained in:
Crista Lopes
2013-12-27 15:41:39 -08:00
parent de06b9b09c
commit 750016ac52
39 changed files with 0 additions and 72 deletions

25
27-free-agents/README.md Normal file
View File

@@ -0,0 +1,25 @@
Style #15
==============================
Similar to the letterbox style, but where the 'things' have
independent threads of execution.
Constraints:
- The larger problem is decomposed into 'things' that make sense for
the problem domain
- Each 'thing' has a queue meant for other \textit{things} to place
messages in it
- Each 'thing' is a capsule of data that exposes only its
ability to receive messages via the queue
- Each 'thing' has its own thread of execution independent of the
others.
Possible names:
- Free agents
- Active letterbox
- Actors