setStatusCommitting will change the tx status to txStatusCommitting
()
| 630 | |
| 631 | // setStatusCommitting will change the tx status to txStatusCommitting |
| 632 | func (tx *Tx) setStatusCommitting() { |
| 633 | status := txStatusCommitting |
| 634 | tx.status.Store(status) |
| 635 | } |
| 636 | |
| 637 | // setStatusClosed will change the tx status to txStatusClosed |
| 638 | func (tx *Tx) setStatusClosed() { |
no outgoing calls
no test coverage detected