RunInTransaction wraps fn into a transaction for the regular app database. It is safe to nest RunInTransaction calls as long as you use the callback's txApp.
(fn func(txApp App) error)
| 361 | // |
| 362 | // It is safe to nest RunInTransaction calls as long as you use the callback's txApp. |
| 363 | RunInTransaction(fn func(txApp App) error) error |
| 364 | |
| 365 | // AuxRunInTransaction wraps fn into a transaction for the auxiliary app database. |
| 366 | // |
no outgoing calls