snapshots

package
v0.0.0-...-71505b4 Latest Latest
Warning

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

Go to latest
Published: Dec 4, 2019 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Repo

type Repo interface {
	List(limit, offset uint) (count int64, snapshots []models.Snapshot, err error)
	RollsInBlock(block int64) (int64, error)
	Create(snapshot models.Snapshot) error
	CreateBulk(snapshots []models.Snapshot) error
}

type Repository

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

Repository is the snapshots repo implementation.

func New

func New(db *gorm.DB) *Repository

New creates an instance of repository using the provided db.

func (*Repository) Create

func (r *Repository) Create(snapshot models.Snapshot) error

Create creates a Snapshot.

func (*Repository) CreateBulk

func (r *Repository) CreateBulk(snapshots []models.Snapshot) error

func (*Repository) List

func (r *Repository) List(limit, offset uint) (count int64, snapshots []models.Snapshot, err error)

List returns a list of snapshots from the newest to oldest. limit defines the limit for the maximum number of snapshots returned. since is used to paginate results based on the level. As the result is ordered descendingly the snapshots with level < since will be returned.

func (*Repository) RollsInBlock

func (r *Repository) RollsInBlock(block int64) (int64, error)

RollsInBlock returns the total number of rolls in a block.

Jump to

Keyboard shortcuts

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