Massive renaming!

This commit is contained in:
Crista Lopes
2019-08-12 14:38:16 -07:00
parent e6c1238a56
commit 61d5f74ad9
90 changed files with 0 additions and 0 deletions

25
29-actors/README.md Normal file
View File

@@ -0,0 +1,25 @@
Style #28
==============================
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