(executionId: string, response: ResumeResponse)
| 606 | const onResumeSettled = (executionId: string): Effect.Effect<void> => |
| 607 | config.pausedExecutionHooks?.onResumeSettled?.(executionId) ?? Effect.void; |
| 608 | const resumeWithLifecycle = (executionId: string, response: ResumeResponse) => |
| 609 | Effect.gen(function* () { |
| 610 | yield* onResumeStarted(executionId); |
| 611 | return yield* engine.resume(executionId, response); |
| 612 | }).pipe(Effect.ensuring(onResumeSettled(executionId))); |
| 613 | |
| 614 | const resolveParentSpan = (): Tracer.AnySpan | undefined => { |
| 615 | const ps = config.parentSpan; |
no test coverage detected