package models
import "github.com/go-arrower/arrower/jobs/models"
Index ¶
- type ArrowerGueJobsWorkerPool
- type DBTX
- type InsertHistoryParams
- type Queries
- func New(db DBTX) *Queries
- func (q *Queries) GetWorkerPools(ctx context.Context) ([]ArrowerGueJobsWorkerPool, error)
- func (q *Queries) InsertHistory(ctx context.Context, arg InsertHistoryParams) error
- func (q *Queries) UpdateHistory(ctx context.Context, arg UpdateHistoryParams) error
- func (q *Queries) UpsertSchedule(ctx context.Context, arg UpsertScheduleParams) error
- func (q *Queries) UpsertWorkerToPool(ctx context.Context, arg UpsertWorkerToPoolParams) error
- func (q *Queries) WithTx(tx pgx.Tx) *Queries
- type UpdateHistoryParams
- type UpsertScheduleParams
- type UpsertWorkerToPoolParams
Types ¶
type ArrowerGueJobsWorkerPool ¶
type ArrowerGueJobsWorkerPool struct { ID string Queue string Workers int16 GitHash string JobTypes []string CreatedAt pgtype.Timestamptz UpdatedAt pgtype.Timestamptz }
type DBTX ¶
type DBTX interface { Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error) Query(context.Context, string, ...interface{}) (pgx.Rows, error) QueryRow(context.Context, string, ...interface{}) pgx.Row }
type InsertHistoryParams ¶
type InsertHistoryParams struct { JobID string Priority int16 RunAt pgtype.Timestamptz JobType string Args []byte RunCount int32 Queue string RunError string }
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func New ¶
func (*Queries) GetWorkerPools ¶
func (q *Queries) GetWorkerPools(ctx context.Context) ([]ArrowerGueJobsWorkerPool, error)
func (*Queries) InsertHistory ¶
func (q *Queries) InsertHistory(ctx context.Context, arg InsertHistoryParams) error
func (*Queries) UpdateHistory ¶
func (q *Queries) UpdateHistory(ctx context.Context, arg UpdateHistoryParams) error
func (*Queries) UpsertSchedule ¶
func (q *Queries) UpsertSchedule(ctx context.Context, arg UpsertScheduleParams) error
func (*Queries) UpsertWorkerToPool ¶
func (q *Queries) UpsertWorkerToPool(ctx context.Context, arg UpsertWorkerToPoolParams) error
func (*Queries) WithTx ¶
type UpdateHistoryParams ¶
type UpsertScheduleParams ¶
type UpsertScheduleParams struct { Queue string Spec string JobType string Args []byte UpdatedAt pgtype.Timestamptz }
type UpsertWorkerToPoolParams ¶
type UpsertWorkerToPoolParams struct { ID string Queue string Workers int16 GitHash string JobTypes []string UpdatedAt pgtype.Timestamptz }
Source Files ¶
- Version
- v0.0.0-20250311203644-ab26c1152cb4 (latest)
- Published
- Mar 11, 2025
- Platform
- linux/amd64
- Imports
- 4 packages
- Last checked
- 1 week ago –
Tools for package owners.