txmanager

package
v0.48.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2025 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Manager

type Manager struct{}

func New

func New() *Manager

New transaction manager.

func (*Manager) Do

func (m *Manager) Do(ctx context.Context, db TxStarter, fn TxFunc) (err error)

Do execs given fn in transaction and commits or rollbacks it.

type TxFunc

type TxFunc func(t pgx.Tx) error

type TxManager

type TxManager interface {
	Do(ctx context.Context, starter TxStarter, fn TxFunc) error
}

TxManager for spawning new txs.

type TxStarter

type TxStarter interface {
	BeginTx(ctx context.Context, txOptions pgx.TxOptions) (pgx.Tx, error)
}

TxStarter must implement new transaction spawn.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL