sql

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: May 31, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewEventRepository

func NewEventRepository(ctx context.Context, db *gorm.DB, expire, runningTimeout time.Duration) (eventbus.EventRepository, error)

Types

type Event

type Event struct {
	EventID string `gorm:"primaryKey;type:varchar(100)"`
	Type    string `gorm:"type:varchar(100)"`
	Status  string `gorm:"type:varchar(100)"`
	// todo record reason why in current status
	Reason      string `gorm:"type:varchar(100)"`
	Payload     string
	RetryCount  int
	CreatedAt   time.Time
	UpdatedAt   time.Time
	ScheduledAt time.Time
	DeletedAt   gorm.DeletedAt `gorm:"index"`
}

Event represents an event to be processed

Jump to

Keyboard shortcuts

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