Proxy: Introduction

Get a brief introduction to the Proxy design pattern.

Proxy is a structural pattern that allows us to provide a substitute for an object. The substitute object, known as Proxy, can perform some action before or after the original object is accessed. For example, we can cache the results ...