tx

package
v3.80.13 Latest Latest
Warning

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

Go to latest
Published: Sep 25, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	LazyTxID = "LAZY_TX"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Identifier

type Identifier interface {
	ID() string
	// contains filtered or unexported methods
}

type LazyID

type LazyID struct {
	// contains filtered or unexported fields
}

func ID

func ID(id string) LazyID

func (LazyID) ID

func (id LazyID) ID() string

func (*LazyID) SetTxID

func (id *LazyID) SetTxID(txID string)

type OnTransactionBeforeCommit

type OnTransactionBeforeCommit func(ctx context.Context) error

type OnTransactionCompletedFunc

type OnTransactionCompletedFunc func(transactionResult error)

type Transaction

type Transaction interface {
	Identifier
	UnLazy(ctx context.Context) error
	SessionID() string

	// OnBeforeCommit add callback, which will be called before commit transaction
	// the method will be not call the method if some error happen and transaction will not be committed
	OnBeforeCommit(f OnTransactionBeforeCommit)
	OnCompleted(f OnTransactionCompletedFunc)
	Rollback(ctx context.Context) error
}

func AsTransaction

func AsTransaction(id Identifier) (Transaction, error)

Jump to

Keyboard shortcuts

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