You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Assets/Proxy Pattern/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,9 @@ The classes and objects participating in this pattern are:
16
16
* provides an interface identical to Subject's so that a proxy can be substituted for for the real subject.
17
17
* controls access to the real subject and may be responsible for creating and deleting it.
18
18
* other responsibilites depend on the kind of proxy:
19
-
* 'remote proxies' are responsible for encoding a request and its arguments and for sending the encoded request to the real subject in a different address space.
20
-
* 'virtual proxies' may cache additional information about the real subject so that they can postpone accessing it. For example, the ImageProxy from the Motivation caches the real images's extent.
21
-
* 'protection proxies' check that the caller has the access permissions required to perform a request.
19
+
* `remote proxies` are responsible for encoding a request and its arguments and for sending the encoded request to the real subject in a different address space.
20
+
* `virtual proxies` may cache additional information about the real subject so that they can postpone accessing it. For example, the ImageProxy from the Motivation caches the real images's extent.
21
+
* `protection proxies` check that the caller has the access permissions required to perform a request.
22
22
###Subject (IMath)
23
23
defines the common interface for RealSubject and Proxy so that a Proxy can be used anywhere a RealSubject is expected.
0 commit comments