Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 1.25 KB

README.md

File metadata and controls

16 lines (10 loc) · 1.25 KB

Proxy

A proxy, in its most general form, is a class functioning as an interface to something else. The proxy could interface to anything: a network connection, a large object in memory, a file, or some other resource that is expensive or impossible to duplicate. In short, a proxy is a wrapper or agent object that is being called by the client to access the real serving object behind the scenes.

Use of the proxy can simply be forwarding to the real object, or can provide additional logic. In the proxy, extra functionality can be provided, for example caching when operations on the real object are resource intensive, or checking preconditions before operations on the real object are invoked. For the client, usage of a proxy object is similar to using the real object, because both implement the same interface.

Additional Resources

Examples

Language Description Status Code Examples
Golang(Go) Simple Example main.go
Python