Versions in this module Expand all Collapse all v0 v0.1.0 Apr 29, 2024 Changes in this version + var ErrUnknownType = errors.New("unknown task type") + type Manager struct + func NewManager() *Manager + func NewManagerWithOptions(options Options) *Manager + func (m *Manager) Cancel() + func (m *Manager) Close() + func (m *Manager) CountOf(t task.Type) int + func (m *Manager) Run(ctx context.Context, fn task.Fn) + func (m *Manager) RunTask(ctx context.Context, definition task.Task) + func (m *Manager) Wait() + type Options struct + Observer observer.Observer + Retry task.Retry + StalledThreshold time.Duration