| 30 | } |
| 31 | |
| 32 | type Executor struct { |
| 33 | backend DocumentBackend |
| 34 | maxRetries int |
| 35 | baseDelay time.Duration |
| 36 | maxDelay time.Duration |
| 37 | jitter func(time.Duration) time.Duration |
| 38 | sleep func(context.Context, time.Duration) error |
| 39 | } |
| 40 | |
| 41 | type executorOptions struct { |
| 42 | maxRetries int |
nothing calls this directly
no outgoing calls
no test coverage detected