(ctx context.Context, exec riverdriver.Executor, params *riverdriver.JobSetStateIfRunningManyParams)
| 85 | } |
| 86 | |
| 87 | func (p *pilotSpy) JobSetStateIfRunningMany(ctx context.Context, exec riverdriver.Executor, params *riverdriver.JobSetStateIfRunningManyParams) ([]*rivertype.JobRow, error) { |
| 88 | p.testSignals.JobSetStateIfRunningMany.Signal(struct{}{}) |
| 89 | return p.StandardPilot.JobSetStateIfRunningMany(ctx, exec, params) |
| 90 | } |
| 91 | |
| 92 | func (p *pilotSpy) PeriodicJobGetAll(ctx context.Context, exec riverdriver.Executor, params *riverpilot.PeriodicJobGetAllParams) ([]*riverpilot.PeriodicJob, error) { |
| 93 | p.testSignals.PeriodicJobGetAll.Signal(struct{}{}) |
nothing calls this directly
no test coverage detected