txmanager

package
v0.60.0 Latest Latest
Warning

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

Go to latest
Published: Aug 4, 2026 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 {
	// contains filtered or unexported fields
}

func New

func New(db TxStarter) *Manager

New transaction manager.

func (*Manager) Do

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

Do executes fn in a transaction with default options.

func (*Manager) DoTx added in v0.59.0

func (m *Manager) DoTx(ctx context.Context, txOptions pgx.TxOptions, fn TxFunc) error

DoTx executes fn in a transaction with the given options.

type TxFunc

type TxFunc func(t pgx.Tx) error

type TxStarter

type TxStarter interface {
	Begin(ctx context.Context) (pgx.Tx, error)
	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