Object creation patterns deal with the creation of objects. Through these patterns you get finer control on how objects are being created and made available. These patterns essentially give you controls such as limiting the number of instances of the … read the rest.
Category: Design patterns
Reactor pattern (POSA2) explained
I was trying to understand the event handling reactor pattern from POSA2 for a while.
Here’s one good material I bumped on which explains this pattern pretty well with the help of java nio.… read the rest.