Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
78 views

Proxy Design Pattern

The proxy pattern provides a surrogate or placeholder for another object to control access to it. A proxy has the same interface as the real component and allows for controlled access, intelligent access, and protection of the real component. It can also optimize performance when connecting to remote machines and simplify APIs of complex objects.

Uploaded by

srivatsa
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
78 views

Proxy Design Pattern

The proxy pattern provides a surrogate or placeholder for another object to control access to it. A proxy has the same interface as the real component and allows for controlled access, intelligent access, and protection of the real component. It can also optimize performance when connecting to remote machines and simplify APIs of complex objects.

Uploaded by

srivatsa
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Proxy Pattern

What ?
A proxy is a class, functioning as an
interface to another class that has
the same interface as the proxy.
Structural Design Pattern

Why ?
Security Reasons
Controlled access
Intelligent access
Protects real component

Optimizes Performance
Connecting with remote machine is easy
Simplifies API of complex objects

How ?

You might also like