19.2 Context
App domains
19.2.1 Context-Bound and Context-Agile Objects
Objects are either
context-bound
or they are
context-agile
. If they are context-bound, they exist in a context, and to interact with them, the message must be marshaled. If they are context-agile, they act within the context of the calling object: their
Suppose you have an object A that
Suppose that you have another object, B, which is context-agile. Now suppose that object A
Should B be context-agile or context-bound? In the case examined so far, B worked fine being agile. Suppose one more class exists: C. C does not have transactions, and it calls a method on B, that changes the database. Now A
If B was marked context-bound when A created it, B would have inherited A's context. In that case, when C invoked a method on B, it would have to be marshaled across the context boundary, but then when B executed the method, it would have been in the context of A's transaction. Much better. This would work if B were context-bound but without attributes. B of course could have its own context attributes, and these might force B to be in a different context from A. For example, B might have a transaction attribute marked RequiresNew . In this case, when B is created, it gets a new context, and thus cannot be in A's context. Thus, when A rolled back, B's work could not be undone. You might mark B with the RequiresNew enumeration value because B is an audit function. When A takes an action on the database, it informs B, which updates an audit trail. You do not want B's work undone when A undoes its transaction. You want B to be in its own transaction context, rolling back only its own mistakes, not A's.
An object thus has three choices. The first option is to be context-agile. A context-agile object operates in the context of its caller. Option two is to be context-bound (accomplished by deriving from
ContextBoundObject
but having no attributes, and thus operating in the context of the creator). Option three is to be context-bound with context attributes, and thus
Which you decide upon depends on how your object will be used. If your object is a simple calculator that cannot possibly need synchronization or transactions or any context support, it is more efficient to be context-agile. If your object should use the context of the object that creates it, you should make that object context-bound with no attributes. Finally, if your object has its own context requirements, you should give it the appropriate attributes. 19.2.2 Marshaling Across Context Boundaries
No proxy is needed when accessing context-agile objects within a single app domain. When an object in one context
For example, when you mark a context-bound object with the
System.EnterpriseServices.Synchronization
attribute, you
Objects are marshaled differently across context boundaries, depending on how they are created:
|