Awesome Go

artifex

CategoryGoroutines
SubcategoryGoroutines
Stars0

Simple in-memory job queue for Golang using worker-based dispatching

About artifex

GoDoc Build Status Go Report Card codecov

artifex

Simple in-memory job queue for Golang using worker-based dispatching

Documentation here: https://godoc.org/github.com/mborders/artifex

Cron jobs use the robfig/cron library: https://godoc.org/github.com/robfig/cron

Example Usage

// 10 workers, 100 max in job queue
d := artifex.NewDispatcher(10, 100)
d.Start()

d.Dispatch(func() {
  // do something
})

err := d.DispatchIn(func() {
  // do something in 500ms
}, time.Millisecond*500)

// Returns a DispatchTicker
dt, err := d.DispatchEvery(func() {
  // do something every 250ms
}, time.Millisecond*250)

// Stop a given DispatchTicker
dt.Stop()

// Returns a DispatchCron
dc, err := d.DispatchCron(func() {
  // do something every 1s
}, "*/1 * * * * *")

// Stop a given DispatchCron
dc.Stop()

// Stop a dispatcher and all its workers/tickers
d.Stop()

Frequently Asked Questions

What is artifex?

artifex is a Goroutines library for the Go programming language. Simple in-memory job queue for Golang using worker-based dispatching

How do I install artifex?

Install artifex with the Go module system using `go get borderstech/artifex`. Check the repository for the current installation instructions.

What category does artifex belong to?

artifex is listed under Goroutines, specifically Goroutines.

← Back to Goroutines