(
executionId: string,
deadline: PausedExecutionDeadline | undefined,
)
| 1113 | : { ttlMs, expiresAt: new Date(Date.now() + ttlMs).toISOString() }; |
| 1114 | }; |
| 1115 | const onExecutionPaused = ( |
| 1116 | executionId: string, |
| 1117 | deadline: PausedExecutionDeadline | undefined, |
| 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> => |
no outgoing calls
no test coverage detected