What is the Proxy Design Pattern?

Proxy controls access to an object and can perform various actions before or after it is used

Jakub Kapuscik
Better Programming
Published in
2 min readOct 1, 2019

--

Photo by JJ Ying on Unsplash

It might be a solution to extend its functionalities without the need to change the class itself. The Proxy shares the same interface as the original class so they could be used interchangeably. It gives us a lot of flexibility and does not create…

--

--