[r1]: / Tags / The -Proxy- Pattern / README.md  Maximize  Restore  History

Download this file

6 lines (3 with data), 897 Bytes

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.