Added style #10

This commit is contained in:
Crista Lopes
2013-09-22 12:00:28 -07:00
parent 154ba24864
commit 7b76bde7f7
2 changed files with 124 additions and 0 deletions

21
10-hollywood/README.md Normal file
View File

@@ -0,0 +1,21 @@
Style #10
==============================
Constraints:
- Larger problem is decomposed into entities using some form of abstraction
(objects, modules or similar)
- The entities are never called on directly for actions
- The entities provide interfaces for other entities to be
able to register callbacks
- At certain points of the computation, the entities call on the other
entities that have registered for callbacks
Possible names:
- Hollywood agent: "don't call us, we'll call you"
- Inversion of control
- Callback heaven/hell