(executionId: string)
| 1074 | ): Effect.Effect<void> => |
| 1075 | config.pausedExecutionHooks?.onExecutionPaused?.(executionId, deadline) ?? Effect.void; |
| 1076 | const onResumeStarted = (executionId: string): Effect.Effect<void> => |
| 1077 | config.pausedExecutionHooks?.onResumeStarted?.(executionId) ?? Effect.void; |
| 1078 | const onResumeSettled = (executionId: string): Effect.Effect<void> => |
| 1079 | config.pausedExecutionHooks?.onResumeSettled?.(executionId) ?? Effect.void; |
| 1080 | const resumeWithLifecycle = (executionId: string, response: ResumeResponse) => |
no outgoing calls
no test coverage detected