(executionId: string)
| 703 | ): Effect.Effect<void> => |
| 704 | config.pausedExecutionHooks?.onExecutionPaused?.(executionId, deadline) ?? Effect.void; |
| 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) => |
no outgoing calls
no test coverage detected