Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,40 @@
export interface CronTriggerRunResult<T> {
started: boolean
value: T | null
}
export interface CronTriggerController {
isRunning(key: string): boolean
run<T>(key: string, action: () => Promise<T>, onStarted?: () => void): Promise<CronTriggerRunResult<T>>
}
// This is an interaction guard for one mounted UI surface. Cross-window and
// cross-process exclusion remains the backend's responsibility via its durable
// cron claim; a renderer-local Set must never be treated as the execution lock.
export function createCronTriggerController(
onRunningChange: (key: string, running: boolean) => void = () => undefined
): CronTriggerController {
const running = new Set<string>()
return {
isRunning: key => running.has(key),
async run<T>(key: string, action: () => Promise<T>, onStarted?: () => void) {
if (running.has(key)) {
return { started: false, value: null }
}
running.add(key)
try {
onRunningChange(key, true)
onStarted?.()
return { started: true, value: await action() }
} finally {
running.delete(key)
onRunningChange(key, false)
}
}
}
}