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

Function removeQueuedExecutionById

apps/sim/lib/execution/isolated-vm.ts:539–543  ·  view source on GitHub ↗
(queueId: number)

Source from the content-addressed store, hash-verified

537}
538
539function removeQueuedExecutionById(queueId: number): QueuedExecution | null {
540 const node = queueNodes.get(queueId)
541 if (!node) return null
542 return removeQueueNode(node)
543}
544
545function pushQueuedExecution(owner: OwnerState, queued: QueuedExecution) {
546 const node: QueueNode = {

Callers 2

enqueueExecutionFunction · 0.85
executeInIsolatedVMFunction · 0.85

Calls 2

removeQueueNodeFunction · 0.85
getMethod · 0.65

Tested by

no test coverage detected