github.com/saucelabs/saucectl@v0.175.1/internal/saucecloud/retry/retrier.go (about)

     1  package retry
     2  
     3  import "github.com/saucelabs/saucectl/internal/job"
     4  
     5  // Retrier represents the retry strategy.
     6  type Retrier interface {
     7  	Retry(c chan<- job.StartOptions, opt job.StartOptions, previous job.Job)
     8  }