September 2016
Intermediate to advanced
775 pages
18h 22m
English
We will now discuss the Proxy pattern with the help of the following UML diagram. As we discussed in the previous paragraph, the Proxy pattern has three main actors: the production house, Agent, and the Actor. Let's put these in a UML diagram and see how the classes look:

As we observe the UML diagram, you'll realize that there are three main participants in this pattern:
Proxy: This maintains a reference that lets the Proxy access the real object. It provides an interface identical to the Subject so that Proxy can substitute the real subject. Proxies are also responsible for creating and deleting the RealSubject ...Read now
Unlock full access