(
executionId: string,
deadline: PausedExecutionDeadline | undefined,
)
| 698 | : { ttlMs, expiresAt: new Date(Date.now() + ttlMs).toISOString() }; |
| 699 | }; |
| 700 | const onExecutionPaused = ( |
| 701 | executionId: string, |
| 702 | deadline: PausedExecutionDeadline | undefined, |
| 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> => |
no outgoing calls
no test coverage detected