Tree [r1] / Tags / The -Proxy- Pattern /
 History

HTTPS access


File Date Author Commit
 Proxy_Application.project 2019-06-09 aliazzz [r1] first commit
 README.md 2019-06-09 aliazzz [r1] first commit

Read Me

The 'Proxy' Pattern for CODESYS 3

Original Poster: Armando Rene Narvaez Contreras

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.