Proxy pattern: Difference between revisions

Content deleted Content added
m Reverted 1 edit by 185.20.29.54 (talk) to last revision by Frap (TW)
Line 53:
== Possible usage scenarios ==
===Remote proxy===
In [[distributed object communication]], a local object represents a remote object (one that belongs to a different address space). The local object is a proxy for the remote object, and method invocation on the local object results in [[remote method invocation]] on the remote object. An example would be an [[Automated teller machine|ATM]] implementation, where the ATM might hold proxy objects for bank information that exists in the remote server. kurac
 
===Virtual proxy===