Data Members



observersRecords keeps BNZObserverRecord objects for all observers

 NSMutableArray* observersRecords; 


transactions keeps all BNZTransaction objects that are currently existing (at most one per thread)

 NSMutableArray* transactions;

Note: one might think of using a NSDictionary for mapping threads to their transaction. However, NSThread does not conform to the copy protocol that is needed for an object to become a key.


transactionsSchedule transactions that are cleared to commit but not finalized are in this array

 NSMutableArray* transactionsSchedule;


(Last Updated 8/31/2006)