add object pool pattern

This commit is contained in:
Jan Brecka
2014-03-24 16:51:49 +01:00
parent b0b0d4a1a4
commit d779b1e86a
7 changed files with 166 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ The patterns can be structured in roughly three different categories. Please cli
* [FactoryMethod](FactoryMethod) [:notebook:](http://en.wikipedia.org/wiki/Factory_method_pattern)
* [StaticFactory](StaticFactory)
* [Prototype](Prototype) [:notebook:](http://en.wikipedia.org/wiki/Prototype_pattern)
* [Pool](Prototype) [:notebook:](http://en.wikipedia.org/wiki/Object_pool_pattern)
* [Singleton](Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern) (is considered an anti-pattern! :no_entry:)
* [Multiton](Multiton) (is considered an anti-pattern! :no_entry:)