MCPcopy Index your code
hub / github.com/simstudioai/sim / isExecInFlight

Function isExecInFlight

apps/sim/lib/table/deps.ts:27–31  ·  view source on GitHub ↗
(exec: RowExecutionMetadata | undefined)

Source from the content-addressed store, hash-verified

25 * yet, which is correct: cancel means "don't run this."
26 */
27export function isExecInFlight(exec: RowExecutionMetadata | undefined): boolean {
28 if (!exec) return false
29 const s = exec.status
30 return s === 'queued' || s === 'running' || s === 'pending'
31}
32
33/**
34 * A cell run the user/stop killed. The single source of truth for "do not run /

Callers 5

classifyEligibilityFunction · 0.90
applyCellFunction · 0.90
countNewlyInFlightFunction · 0.90
useCancelTableRunsFunction · 0.90
useRunColumnFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected