* Schedule a job to be run, using its name. * @param name The name of job to be run. * @param argument The argument to send to the job when starting it. * @param options Scheduling options. * @returns The job being run.
(
name: JobName,
argument: A,
options?: ScheduleJobOptions,
)
| 432 | * @returns The job being run. |
| 433 | */ |
| 434 | schedule< |
| 435 | A extends MinimumArgumentValueT, |
| 436 | I extends MinimumInputValueT, |
| 437 | O extends MinimumOutputValueT, |
no outgoing calls
no test coverage detected