-
Zaira Ardor authored
This release implements the Proxy pattern. We create a new proxy class with the same interface as an original service object. Then you update your app so that it passes the proxy object to all of the original object’s clients. Upon receiving a request from a client, the proxy creates a real service object and delegates all the work to it. Please view the README.md for usage details. @See https://refactoring.guru/design-patterns/proxy #16
40ab873dZaira Ardor authoredThis release implements the Proxy pattern. We create a new proxy class with the same interface as an original service object. Then you update your app so that it passes the proxy object to all of the original object’s clients. Upon receiving a request from a client, the proxy creates a real service object and delegates all the work to it. Please view the README.md for usage details. @See https://refactoring.guru/design-patterns/proxy #16
To learn more about this project, read the wiki.
Loading