Este contenido no está disponible en el idioma seleccionado.
9.2.7. Example
The simple example below illustrates the relationships between activation, termination and commitment:
Example 9.4. Relationships Between Activation, Termination, and Commitment
The execution of the above code involves the following sequence of activities:
- Creation of bindings to persistent objects. This might involve the creation of stub objects and a call to remote objects. The above example re-binds to an existing persistent object identified by
Name-A
, and a new persistent object. A naming system for remote objects maintains the mapping between object names and locations and is described in a later chapter. - Start of the atomic transaction.
- Operation invocations. As a part of a given invocation, the object implementation ensures that it is locked in read or write mode, assuming no lock conflict, and initialized, if necessary, with the latest committed state from the object store. The first time a lock is acquired on an object within a transaction, the object’s state is also acquired from the object store.
- Commit of the top-level action. This includes updating the state of any modified objects in the object store.
- Breaking of the previously created bindings.