gocraft / work

Process background jobs in Go
MIT License
2.43k stars 342 forks source link

Delay between job retry #177

Closed faruqisan closed 3 years ago

faruqisan commented 3 years ago

Hi, is there any feature to set the delay between job retry?

oshankkumar commented 3 years ago

you can use JobOptions.Backoff to set custom backoff algorithm.

faruqisan commented 3 years ago

Cool, thanks