Interface ITransaction

This is the transmission interface.

interface ITransaction {
    acceptChanges(): any;
    rejectChanges(): any;
}

Implemented by

Methods

  • Accept the change. (commit)

    Returns any

  • Reject the change (rollback)

    Returns any