Commit commits the transaction.
()
| 30 | type TransactionContext interface { |
| 31 | // Commit commits the transaction. |
| 32 | Commit() error |
| 33 | // Rollback rolls back the transaction. |
| 34 | Rollback() error |
| 35 | // GetAdapter returns an adapter that operates within this transaction. |
no outgoing calls