model

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Dec 3, 2019 License: GPL-3.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 ITrans

type ITrans interface {
	// Start transaction
	Begin(ctx context.Context) (interface{}, error)
	// Submit transaction
	Commit(ctx context.Context, trans interface{}) error
	// Rollback transaction
	Rollback(ctx context.Context, trans interface{}) error
}

ITrans - Manage Transaction interface

type Trans

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

Trans - Manage Transaction

func NewTrans

func NewTrans(db *gorm.DB) *Trans

NewTrans - Create a transaction management instance

func (*Trans) Begin

func (a *Trans) Begin(ctx context.Context) (interface{}, error)

Begin - Open transaction

func (*Trans) Commit

func (a *Trans) Commit(ctx context.Context, trans interface{}) error

Commit - Submit transaction

func (*Trans) Rollback

func (a *Trans) Rollback(ctx context.Context, trans interface{}) error

Rollback - Rollback transaction

Jump to

Keyboard shortcuts

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