public class TransactionCanonification
extends java.lang.Object
A canonized transaction is a streamlined representation that focuses solely on the essential changes (BOProc-s) required to achieve the transaction's final state. It eliminates redundant or overwritten BOProc-s, optimizing the transaction for storage and processing. The Alarm system, for example, relies on canonized transactions for accurate change detection.
**Important:** The algorithm prioritizes retaining the *last* BOProc and discards earlier ones
if necessary. This behavior is crucial for maintaining data consistency during the `backToTheFuture`
handling in DBMan
, ensuring that the local `Lmod` values stored in the BOProc-s
remain accurate.
Constructor and Description |
---|
TransactionCanonification(java.util.List<BOProc> _procs,
java.util.Set<BO> _newBOs)
Analyzes the transaction and produces a canonized version of its core properties.
|
TransactionCanonification(java.util.List<BOProc> _procs,
java.util.Set<BO> _newBOs,
java.lang.Integer _pausedFiringNewProcsAt) |
Modifier and Type | Method and Description |
---|---|
java.util.Set<BO> |
getBOs()
Returns an unmodifiable view of the set of BOs involved in the transaction.
|
java.util.Set<BO> |
getNewBOs()
Returns an unmodifiable view of the set of new BOs created during the transaction.
|
java.lang.Integer |
getPausedFiringNewProcsAt()
Returns the new index at which firing procedures was paused, if applicable.
|
java.util.List<BOProc> |
getProcs()
Returns an unmodifiable view of the canonized list of BOProc-s.
|
java.util.Set<BO> |
getPurges()
Returns an unmodifiable view of the set of BOs marked for removal (purging) from the database during the transaction.
|
java.util.Set<BO> |
getRefs()
Returns an unmodifiable view of the set of references encountered during transaction processing
|
public TransactionCanonification(java.util.List<BOProc> _procs, java.util.Set<BO> _newBOs)
This method examines all BOProc-s (Business Object Procedures) within the transaction and removes those that are redundant or overwritten by subsequent BOProc-s. It also considers newly created BOs and optionally handles a point where change listener notifications were paused.
_procs
- A non-null list of BOProc-s to be canonized (may be empty)._newBOs
- A non-null set of BOs created within the transaction (may be empty)._pausedFiringNewProcsAt
- An optional Integer indicating the size of `_procs` when change listener
notifications were disabled. Can be null if notifications were not paused.public java.util.List<BOProc> getProcs()
public java.util.Set<BO> getBOs()
public java.util.Set<BO> getNewBOs()
public java.util.Set<BO> getPurges()
public java.util.Set<BO> getRefs()
public java.lang.Integer getPausedFiringNewProcsAt()
This index may have been adjusted during canonification.
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.