(executionId: string)
| 1097 | ): Effect.Effect<void> => |
| 1098 | config.pausedExecutionHooks?.onExecutionPaused?.(executionId, deadline) ?? Effect.void; |
| 1099 | const onResumeStarted = (executionId: string): Effect.Effect<void> => |
| 1100 | config.pausedExecutionHooks?.onResumeStarted?.(executionId) ?? Effect.void; |
| 1101 | const onResumeSettled = (executionId: string): Effect.Effect<void> => |
| 1102 | config.pausedExecutionHooks?.onResumeSettled?.(executionId) ?? Effect.void; |
| 1103 | const resumeWithLifecycle = (executionId: string, response: ResumeResponse) => |
no outgoing calls
no test coverage detected