Skip to content
Snippets Groups Projects
Select Git revision
  • d191590c6e385e36d699d1d60534aebf1a3086a0
  • master default protected
  • 1.31
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
  • 4.25.0
  • 4.24.3
  • 4.24.2
  • 4.24.1
  • 4.24.0
  • 4.23.6
  • 4.23.5
  • 4.23.4
  • 4.23.3
  • 4.23.2
  • 4.23.1
  • 4.23.0
23 results

flake.lock

Blame
  • job-generic.go 401 B
    package jobqueue
    
    import (
    	"context"
    	"time"
    )
    
    type GenericJob interface {
    	GetID() JobID
    	GetDependencies() []JobID
    
    	GetPriority() Priority
    
    	Execute(ctx context.Context) (RunGenericResult, error)
    
    	Cancel() error
    
    	GetMaxRetries() uint
    
    	GetRetryDelay() time.Duration
    
    	GetTimeout() time.Duration
    
    	GetPersistence() JobPersistence
    
    	SetScheduler(scheduler Scheduler)
    
    	GetScheduler() Scheduler
    }