File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ I have added examples of pattern usage in the Python standard library and pypi -
25
25
- [x] [ State] ( chapter10_state )
26
26
- [ ] Proxy
27
27
- [ ] [ Model View Controller (MVC)] ( chapter12_compound )
28
+ - [ ] [ Manager] ( chapter14_leftover ) _ (Bonus Pattern)_
28
29
29
30
30
31
## Sample Code : Java
Original file line number Diff line number Diff line change
1
+ # Chapter 14: Leftover Patterns
2
+
3
+ > ** Manager Pattern** : _ (Bonus pattern)_ Manages multiple entities of the same or similar type.
4
+
5
+ Unlike the factory patterns which handle object creation or the
6
+ mediator pattern which handles interaction between related objects, the
7
+ manager pattern has the role of managing multiple identical or related objects.
8
+
9
+ For example in the Python standard library the [ ` Manager ` object] ( https://docs.python.org/3/library/multiprocessing.html#multiprocessing.Manager )
10
+ in the ` multiprocessing ` library manages shared objects between child
11
+ processes.
You can’t perform that action at this time.
0 commit comments