#354 Add maven model for feature toggle design pattern

This commit is contained in:
Joseph McCarthy
2016-01-25 21:14:24 +00:00
parent cf10bd1d05
commit d7526fc7c0
86 changed files with 1165 additions and 270 deletions

View File

@@ -9,15 +9,17 @@ tags:
- Difficulty-Intermediate
---
**Intent:** Poison Pill is known predefined data item that allows to provide
## Intent
Poison Pill is known predefined data item that allows to provide
graceful shutdown for separate distributed consumption process.
![alt text](./etc/poison-pill.png "Poison Pill")
**Applicability:** Use the Poison Pill idiom when
## Applicability
Use the Poison Pill idiom when
* need to send signal from one thread/process to another to terminate
**Real world examples:**
## Real world examples
* [akka.actor.PoisonPill](http://doc.akka.io/docs/akka/2.1.4/java/untyped-actors.html)