(executionId: string)
| 1118 | ): Effect.Effect<void> => |
| 1119 | config.pausedExecutionHooks?.onExecutionPaused?.(executionId, deadline) ?? Effect.void; |
| 1120 | const onResumeStarted = (executionId: string): Effect.Effect<void> => |
| 1121 | config.pausedExecutionHooks?.onResumeStarted?.(executionId) ?? Effect.void; |
| 1122 | const onResumeSettled = (executionId: string): Effect.Effect<void> => |
| 1123 | config.pausedExecutionHooks?.onResumeSettled?.(executionId) ?? Effect.void; |
| 1124 | const resumeWithLifecycle = (executionId: string, response: ResumeResponse) => |
no outgoing calls
no test coverage detected