Start begins the provider's job generation and returns a channel of jobs
(ctx context.Context)
| 11 | type Provider interface { |
| 12 | // Start begins the provider's job generation and returns a channel of jobs |
| 13 | Start(ctx context.Context) <-chan *work.Job |
| 14 | } |
| 15 | |
| 16 | // Scheduler interface defines the methods providers need from the scheduler |
no outgoing calls