163616371638163916401641164216431644
} void fireWillCommit() { // post event: WILL_COMMIT if (this.transactionEventsEnabled) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.WILL_COMMIT); } }
164416451646164716481649165016511652
} void fireTransactionRolledback() { // post event: DID_ROLLBACK if ((this.transactionEventsEnabled)) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.DID_ROLLBACK); } }
1652165316541655165616571658165916601661
} void fireTransactionCommitted() { // old-style event if ((this.transactionEventsEnabled)) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.DID_COMMIT); } }
163716381639164016411642164316441645
164516461647164816491650165116521653
1653165416551656165716581659166016611662
145914601461146214631464146514661467
* later 3.0 milestones. */ void fireWillCommit() { // post event: WILL_COMMIT if (this.transactionEventsEnabled) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.WILL_COMMIT); } }
147114721473147414751476147714781479
* later 3.0 milestones. */ void fireTransactionRolledback() { // post event: DID_ROLLBACK if ((this.transactionEventsEnabled)) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.DID_ROLLBACK); } }
1483148414851486148714881489149014911492
* later 3.0 milestones. */ void fireTransactionCommitted() { // old-style event if ((this.transactionEventsEnabled)) { DataContextEvent commitChangesEvent = new DataContextEvent(this); getEventManager().postEvent(commitChangesEvent, DataContext.DID_COMMIT); } }