type
TaskBackoff
type TaskBackoff = core.TaskBackoffFixed, linear, or exponential durable retry schedule.
TaskBackoffFixed"fixed"- Uses the configured delay for every retry.
TaskBackoffLinear"linear"- Multiplies the configured delay by the attempt number.
TaskBackoffExponential"exponential"- Doubles delay by attempt until the configured maximum.