fix(cron): release cancelled embedded lanes

This commit is contained in:
Vincent Koc
2026-06-18 18:56:20 +08:00
committed by Vincent Koc
parent bf9c59b6a4
commit fa4f1abb29
7 changed files with 401 additions and 13 deletions
+4
View File
@@ -7,6 +7,10 @@ export type CommandQueueEnqueueOptions = {
onWait?: (waitMs: number, queuedAhead: number) => void;
taskTimeoutMs?: number;
taskTimeoutProgressAtMs?: () => number | undefined;
taskTimeoutAbortSignal?: AbortSignal;
taskTimeoutAbortGraceMs?: number;
/** Ends the task after a caller-owned timeout cleanup grace has already elapsed. */
taskTimeoutReleaseSignal?: AbortSignal;
priority?: "foreground" | "normal" | "background";
};