MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / isRecurringJob

Function isRecurringJob

src/runtime/adapters/scheduler.ts:83–85  ·  view source on GitHub ↗
(jobConfig: ScheduledJobConfig)

Source from the content-addressed store, hash-verified

81 * path separators or line breaks.
82 */
83function isValidJobId(id: string): boolean {
84 return id.length > 0 && id.length <= 128 && !INVALID_JOB_ID_CHARS.test(id);
85}
86
87function isRecurringJob(jobConfig: ScheduledJobConfig): boolean {
88 return hasJobSchedule(jobConfig);

Callers 4

startMethod · 0.85
addJobMethod · 0.85
setEnabledMethod · 0.85
listJobsMethod · 0.85

Calls 1

hasJobScheduleFunction · 0.85

Tested by

no test coverage detected