MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / onResumeSettled

Function onResumeSettled

packages/hosts/mcp/src/tool-server.ts:707–708  ·  view source on GitHub ↗
(executionId: string)

Source from the content-addressed store, hash-verified

705 const onResumeStarted = (executionId: string): Effect.Effect<void> =>
706 config.pausedExecutionHooks?.onResumeStarted?.(executionId) ?? Effect.void;
707 const onResumeSettled = (executionId: string): Effect.Effect<void> =>
708 config.pausedExecutionHooks?.onResumeSettled?.(executionId) ?? Effect.void;
709 const resumeWithLifecycle = (executionId: string, response: ResumeResponse) =>
710 Effect.gen(function* () {
711 yield* onResumeStarted(executionId);

Callers 1

resumeWithLifecycleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected