@workflow/core 5.0.0-beta.5 → 5.0.0-beta.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (310) hide show
  1. package/dist/attribute-changes.d.ts +5 -0
  2. package/dist/attribute-changes.d.ts.map +1 -0
  3. package/dist/attribute-changes.js +25 -0
  4. package/dist/capabilities.d.ts +35 -2
  5. package/dist/capabilities.d.ts.map +1 -1
  6. package/dist/capabilities.js +74 -5
  7. package/dist/capture-stack.d.ts +1 -1
  8. package/dist/capture-stack.js +2 -2
  9. package/dist/class-serialization.d.ts +32 -0
  10. package/dist/class-serialization.d.ts.map +1 -1
  11. package/dist/class-serialization.js +37 -1
  12. package/dist/classify-error.d.ts +19 -3
  13. package/dist/classify-error.d.ts.map +1 -1
  14. package/dist/classify-error.js +98 -6
  15. package/dist/context-violation-error.d.ts +5 -5
  16. package/dist/context-violation-error.d.ts.map +1 -1
  17. package/dist/context-violation-error.js +8 -6
  18. package/dist/create-hook.d.ts +72 -7
  19. package/dist/create-hook.d.ts.map +1 -1
  20. package/dist/create-hook.js +1 -1
  21. package/dist/define-hook.js +2 -2
  22. package/dist/describe-error.d.ts +7 -7
  23. package/dist/describe-error.d.ts.map +1 -1
  24. package/dist/describe-error.js +97 -12
  25. package/dist/encryption.d.ts +38 -4
  26. package/dist/encryption.d.ts.map +1 -1
  27. package/dist/encryption.js +96 -14
  28. package/dist/events-consumer.d.ts +271 -0
  29. package/dist/events-consumer.d.ts.map +1 -1
  30. package/dist/events-consumer.js +646 -42
  31. package/dist/flushable-stream.d.ts +56 -1
  32. package/dist/flushable-stream.d.ts.map +1 -1
  33. package/dist/flushable-stream.js +123 -11
  34. package/dist/global.d.ts +36 -2
  35. package/dist/global.d.ts.map +1 -1
  36. package/dist/global.js +21 -6
  37. package/dist/index.d.ts +2 -1
  38. package/dist/index.d.ts.map +1 -1
  39. package/dist/index.js +3 -2
  40. package/dist/log-format.d.ts +2 -2
  41. package/dist/log-format.js +7 -7
  42. package/dist/logger.d.ts +1 -0
  43. package/dist/logger.d.ts.map +1 -1
  44. package/dist/logger.js +10 -6
  45. package/dist/private.d.ts +226 -9
  46. package/dist/private.d.ts.map +1 -1
  47. package/dist/private.js +626 -7
  48. package/dist/replay-payload-cache.d.ts +64 -0
  49. package/dist/replay-payload-cache.d.ts.map +1 -0
  50. package/dist/replay-payload-cache.js +158 -0
  51. package/dist/runtime/compute-instance.d.ts +13 -0
  52. package/dist/runtime/compute-instance.d.ts.map +1 -0
  53. package/dist/runtime/compute-instance.js +14 -0
  54. package/dist/runtime/constants.d.ts +315 -0
  55. package/dist/runtime/constants.d.ts.map +1 -1
  56. package/dist/runtime/constants.js +502 -16
  57. package/dist/runtime/count-step-started-events.d.ts +52 -0
  58. package/dist/runtime/count-step-started-events.d.ts.map +1 -0
  59. package/dist/runtime/count-step-started-events.js +72 -0
  60. package/dist/runtime/deployment-guard.d.ts +99 -0
  61. package/dist/runtime/deployment-guard.d.ts.map +1 -0
  62. package/dist/runtime/deployment-guard.js +154 -0
  63. package/dist/runtime/get-port-lazy.d.ts +15 -0
  64. package/dist/runtime/get-port-lazy.d.ts.map +1 -1
  65. package/dist/runtime/get-port-lazy.js +75 -6
  66. package/dist/runtime/get-world-lazy.d.ts +5 -14
  67. package/dist/runtime/get-world-lazy.d.ts.map +1 -1
  68. package/dist/runtime/get-world-lazy.js +19 -29
  69. package/dist/runtime/helpers.d.ts +341 -29
  70. package/dist/runtime/helpers.d.ts.map +1 -1
  71. package/dist/runtime/helpers.js +559 -57
  72. package/dist/runtime/quickjs-assets.generated.d.ts +14 -0
  73. package/dist/runtime/quickjs-assets.generated.d.ts.map +1 -0
  74. package/dist/runtime/quickjs-assets.generated.js +30 -0
  75. package/dist/runtime/quickjs-entrypoint.d.ts +136 -0
  76. package/dist/runtime/quickjs-entrypoint.d.ts.map +1 -0
  77. package/dist/runtime/quickjs-entrypoint.js +1686 -0
  78. package/dist/runtime/quickjs-runtime.d.ts +244 -0
  79. package/dist/runtime/quickjs-runtime.d.ts.map +1 -0
  80. package/dist/runtime/quickjs-runtime.js +2427 -0
  81. package/dist/runtime/quickjs-serde.d.ts +107 -0
  82. package/dist/runtime/quickjs-serde.d.ts.map +1 -0
  83. package/dist/runtime/quickjs-serde.js +2159 -0
  84. package/dist/runtime/replay-budget.d.ts +97 -0
  85. package/dist/runtime/replay-budget.d.ts.map +1 -0
  86. package/dist/runtime/replay-budget.js +139 -0
  87. package/dist/runtime/replay-recovery-reporter.d.ts +36 -0
  88. package/dist/runtime/replay-recovery-reporter.d.ts.map +1 -0
  89. package/dist/runtime/replay-recovery-reporter.js +64 -0
  90. package/dist/runtime/resume-hook.d.ts +91 -8
  91. package/dist/runtime/resume-hook.d.ts.map +1 -1
  92. package/dist/runtime/resume-hook.js +512 -89
  93. package/dist/runtime/resume-latency.d.ts +150 -0
  94. package/dist/runtime/resume-latency.d.ts.map +1 -0
  95. package/dist/runtime/resume-latency.js +155 -0
  96. package/dist/runtime/run-id-time.d.ts +19 -0
  97. package/dist/runtime/run-id-time.d.ts.map +1 -0
  98. package/dist/runtime/run-id-time.js +42 -0
  99. package/dist/runtime/run.d.ts +72 -7
  100. package/dist/runtime/run.d.ts.map +1 -1
  101. package/dist/runtime/run.js +280 -53
  102. package/dist/runtime/runs.d.ts +54 -3
  103. package/dist/runtime/runs.d.ts.map +1 -1
  104. package/dist/runtime/runs.js +126 -16
  105. package/dist/runtime/start.d.ts +101 -2
  106. package/dist/runtime/start.d.ts.map +1 -1
  107. package/dist/runtime/start.js +352 -61
  108. package/dist/runtime/step-executor.d.ts +205 -5
  109. package/dist/runtime/step-executor.d.ts.map +1 -1
  110. package/dist/runtime/step-executor.js +760 -127
  111. package/dist/runtime/step-latency.d.ts +220 -0
  112. package/dist/runtime/step-latency.d.ts.map +1 -0
  113. package/dist/runtime/step-latency.js +215 -0
  114. package/dist/runtime/step-ownership.d.ts +72 -0
  115. package/dist/runtime/step-ownership.d.ts.map +1 -0
  116. package/dist/runtime/step-ownership.js +114 -0
  117. package/dist/runtime/step-single-flight.d.ts +12 -0
  118. package/dist/runtime/step-single-flight.d.ts.map +1 -0
  119. package/dist/runtime/step-single-flight.js +75 -0
  120. package/dist/runtime/suspension-handler.d.ts +269 -7
  121. package/dist/runtime/suspension-handler.d.ts.map +1 -1
  122. package/dist/runtime/suspension-handler.js +1253 -125
  123. package/dist/runtime/unserializable-step.d.ts +34 -0
  124. package/dist/runtime/unserializable-step.d.ts.map +1 -0
  125. package/dist/runtime/unserializable-step.js +52 -0
  126. package/dist/runtime/vm-mode.d.ts +44 -0
  127. package/dist/runtime/vm-mode.d.ts.map +1 -0
  128. package/dist/runtime/vm-mode.js +62 -0
  129. package/dist/runtime/vm-serde-bundle.generated.d.ts +14 -0
  130. package/dist/runtime/vm-serde-bundle.generated.d.ts.map +1 -0
  131. package/dist/runtime/vm-serde-bundle.generated.js +16 -0
  132. package/dist/runtime/wait-continuation.d.ts +106 -0
  133. package/dist/runtime/wait-continuation.d.ts.map +1 -0
  134. package/dist/runtime/wait-continuation.js +136 -0
  135. package/dist/runtime/wait-until.d.ts +18 -0
  136. package/dist/runtime/wait-until.d.ts.map +1 -0
  137. package/dist/runtime/wait-until.js +42 -0
  138. package/dist/runtime/world-compatibility.d.ts +32 -0
  139. package/dist/runtime/world-compatibility.d.ts.map +1 -0
  140. package/dist/runtime/world-compatibility.js +44 -0
  141. package/dist/runtime/world-init.d.ts +17 -42
  142. package/dist/runtime/world-init.d.ts.map +1 -1
  143. package/dist/runtime/world-init.js +18 -43
  144. package/dist/runtime/world.d.ts +14 -2
  145. package/dist/runtime/world.d.ts.map +1 -1
  146. package/dist/runtime/world.js +75 -19
  147. package/dist/runtime.d.ts +10 -6
  148. package/dist/runtime.d.ts.map +1 -1
  149. package/dist/runtime.js +3741 -490
  150. package/dist/sealed-box.d.ts +167 -0
  151. package/dist/sealed-box.d.ts.map +1 -0
  152. package/dist/sealed-box.js +571 -0
  153. package/dist/serialization/client.d.ts +3 -3
  154. package/dist/serialization/client.d.ts.map +1 -1
  155. package/dist/serialization/client.js +8 -4
  156. package/dist/serialization/codec-devalue-vm.d.ts +16 -0
  157. package/dist/serialization/codec-devalue-vm.d.ts.map +1 -0
  158. package/dist/serialization/codec-devalue-vm.js +148 -0
  159. package/dist/serialization/codec-devalue.d.ts +1 -1
  160. package/dist/serialization/codec-devalue.d.ts.map +1 -1
  161. package/dist/serialization/codec-devalue.js +24 -6
  162. package/dist/serialization/codec.d.ts +37 -2
  163. package/dist/serialization/codec.d.ts.map +1 -1
  164. package/dist/serialization/codec.js +2 -2
  165. package/dist/serialization/compression.d.ts +105 -0
  166. package/dist/serialization/compression.d.ts.map +1 -0
  167. package/dist/serialization/compression.js +261 -0
  168. package/dist/serialization/encryption.d.ts +119 -17
  169. package/dist/serialization/encryption.d.ts.map +1 -1
  170. package/dist/serialization/encryption.js +152 -17
  171. package/dist/serialization/errors.d.ts +13 -0
  172. package/dist/serialization/errors.d.ts.map +1 -1
  173. package/dist/serialization/errors.js +20 -2
  174. package/dist/serialization/format.d.ts +6 -6
  175. package/dist/serialization/format.js +7 -7
  176. package/dist/serialization/hardened.d.ts +156 -0
  177. package/dist/serialization/hardened.d.ts.map +1 -0
  178. package/dist/serialization/hardened.js +538 -0
  179. package/dist/serialization/index.d.ts +10 -8
  180. package/dist/serialization/index.d.ts.map +1 -1
  181. package/dist/serialization/index.js +10 -8
  182. package/dist/serialization/reducers/class-vm.d.ts +20 -0
  183. package/dist/serialization/reducers/class-vm.d.ts.map +1 -0
  184. package/dist/serialization/reducers/class-vm.js +77 -0
  185. package/dist/serialization/reducers/class.d.ts.map +1 -1
  186. package/dist/serialization/reducers/class.js +11 -6
  187. package/dist/serialization/reducers/common-vm.d.ts +15 -0
  188. package/dist/serialization/reducers/common-vm.d.ts.map +1 -0
  189. package/dist/serialization/reducers/common-vm.js +616 -0
  190. package/dist/serialization/reducers/common.d.ts +1 -1
  191. package/dist/serialization/reducers/common.d.ts.map +1 -1
  192. package/dist/serialization/reducers/common.js +202 -62
  193. package/dist/serialization/reducers/step-function-vm.d.ts +44 -0
  194. package/dist/serialization/reducers/step-function-vm.d.ts.map +1 -0
  195. package/dist/serialization/reducers/step-function-vm.js +97 -0
  196. package/dist/serialization/reducers/step-function.d.ts.map +1 -1
  197. package/dist/serialization/reducers/step-function.js +25 -9
  198. package/dist/serialization/step.d.ts +4 -4
  199. package/dist/serialization/step.d.ts.map +1 -1
  200. package/dist/serialization/step.js +9 -5
  201. package/dist/serialization/types.d.ts +80 -1
  202. package/dist/serialization/types.d.ts.map +1 -1
  203. package/dist/serialization/types.js +15 -1
  204. package/dist/serialization/workflow-vm.d.ts +29 -0
  205. package/dist/serialization/workflow-vm.d.ts.map +1 -0
  206. package/dist/serialization/workflow-vm.js +74 -0
  207. package/dist/serialization-format.d.ts +64 -8
  208. package/dist/serialization-format.d.ts.map +1 -1
  209. package/dist/serialization-format.js +225 -73
  210. package/dist/serialization.d.ts +262 -34
  211. package/dist/serialization.d.ts.map +1 -1
  212. package/dist/serialization.js +1879 -274
  213. package/dist/set-attributes.d.ts +13 -0
  214. package/dist/set-attributes.d.ts.map +1 -0
  215. package/dist/set-attributes.js +60 -0
  216. package/dist/source-map.d.ts +25 -0
  217. package/dist/source-map.d.ts.map +1 -1
  218. package/dist/source-map.js +154 -10
  219. package/dist/step/context-storage.d.ts +61 -2
  220. package/dist/step/context-storage.d.ts.map +1 -1
  221. package/dist/step/context-storage.js +7 -5
  222. package/dist/step/writable-stream.d.ts +3 -3
  223. package/dist/step/writable-stream.d.ts.map +1 -1
  224. package/dist/step/writable-stream.js +72 -9
  225. package/dist/step.d.ts.map +1 -1
  226. package/dist/step.js +148 -27
  227. package/dist/symbols.d.ts +50 -0
  228. package/dist/symbols.d.ts.map +1 -1
  229. package/dist/symbols.js +51 -1
  230. package/dist/telemetry/semantic-conventions.d.ts +397 -2
  231. package/dist/telemetry/semantic-conventions.d.ts.map +1 -1
  232. package/dist/telemetry/semantic-conventions.js +297 -3
  233. package/dist/telemetry.d.ts +91 -0
  234. package/dist/telemetry.d.ts.map +1 -1
  235. package/dist/telemetry.js +244 -17
  236. package/dist/test-support/orchestrator-context.d.ts +25 -0
  237. package/dist/test-support/orchestrator-context.d.ts.map +1 -0
  238. package/dist/test-support/orchestrator-context.js +101 -0
  239. package/dist/types.d.ts +6 -0
  240. package/dist/types.d.ts.map +1 -1
  241. package/dist/types.js +23 -1
  242. package/dist/util.d.ts +0 -5
  243. package/dist/util.d.ts.map +1 -1
  244. package/dist/util.js +1 -15
  245. package/dist/version.d.ts +1 -1
  246. package/dist/version.d.ts.map +1 -1
  247. package/dist/version.js +2 -2
  248. package/dist/vm/index.d.ts.map +1 -1
  249. package/dist/vm/index.js +84 -14
  250. package/dist/vm/script-cache.d.ts +26 -0
  251. package/dist/vm/script-cache.d.ts.map +1 -0
  252. package/dist/vm/script-cache.js +131 -0
  253. package/dist/vm/uint8array-base64.js +1 -1
  254. package/dist/workflow/abort-controller.d.ts +2 -2
  255. package/dist/workflow/abort-controller.d.ts.map +1 -1
  256. package/dist/workflow/abort-controller.js +88 -21
  257. package/dist/workflow/attribute-dispatcher.d.ts +6 -0
  258. package/dist/workflow/attribute-dispatcher.d.ts.map +1 -0
  259. package/dist/workflow/attribute-dispatcher.js +45 -0
  260. package/dist/workflow/create-hook.d.ts.map +1 -1
  261. package/dist/workflow/create-hook.js +24 -3
  262. package/dist/workflow/get-workflow-metadata.js +2 -2
  263. package/dist/workflow/hook.d.ts.map +1 -1
  264. package/dist/workflow/hook.js +304 -47
  265. package/dist/workflow/index.d.ts +1 -0
  266. package/dist/workflow/index.d.ts.map +1 -1
  267. package/dist/workflow/index.js +2 -1
  268. package/dist/workflow/set-attributes.d.ts +68 -0
  269. package/dist/workflow/set-attributes.d.ts.map +1 -0
  270. package/dist/workflow/set-attributes.js +60 -0
  271. package/dist/workflow/sleep.d.ts.map +1 -1
  272. package/dist/workflow/sleep.js +58 -12
  273. package/dist/workflow/world-init-stub.d.ts +3 -3
  274. package/dist/workflow/world-init-stub.js +4 -4
  275. package/dist/workflow.d.ts +95 -3
  276. package/dist/workflow.d.ts.map +1 -1
  277. package/dist/workflow.js +895 -561
  278. package/docs/api-reference/create-hook.mdx +89 -10
  279. package/docs/api-reference/create-webhook.mdx +16 -15
  280. package/docs/api-reference/define-hook.mdx +35 -33
  281. package/docs/api-reference/fatal-error.mdx +30 -8
  282. package/docs/api-reference/fetch.mdx +14 -10
  283. package/docs/api-reference/get-step-metadata.mdx +2 -2
  284. package/docs/api-reference/get-workflow-metadata.mdx +3 -3
  285. package/docs/api-reference/get-writable.mdx +7 -7
  286. package/docs/api-reference/index.mdx +4 -1
  287. package/docs/api-reference/retryable-error.mdx +1 -1
  288. package/docs/api-reference/set-attributes.mdx +61 -0
  289. package/docs/api-reference/sleep.mdx +4 -4
  290. package/docs/foundations/cancellation.mdx +31 -32
  291. package/docs/foundations/errors-and-retries.mdx +42 -11
  292. package/docs/foundations/hooks.mdx +64 -35
  293. package/docs/foundations/idempotency.mdx +244 -12
  294. package/docs/foundations/index.mdx +1 -23
  295. package/docs/foundations/meta.json +2 -1
  296. package/docs/foundations/serialization.mdx +21 -22
  297. package/docs/foundations/starting-workflows.mdx +106 -30
  298. package/docs/foundations/streaming.mdx +107 -59
  299. package/docs/foundations/versioning.mdx +263 -0
  300. package/docs/foundations/workflows-and-steps.mdx +9 -9
  301. package/docs/how-it-works/cancellation.mdx +63 -63
  302. package/docs/how-it-works/code-transform.mdx +83 -67
  303. package/docs/how-it-works/encryption.mdx +30 -26
  304. package/docs/how-it-works/event-sourcing.mdx +98 -34
  305. package/docs/how-it-works/framework-integrations.mdx +96 -337
  306. package/docs/how-it-works/understanding-directives.mdx +22 -22
  307. package/package.json +24 -15
  308. package/dist/runtime/step-handler.d.ts +0 -2
  309. package/dist/runtime/step-handler.d.ts.map +0 -1
  310. package/dist/runtime/step-handler.js +0 -776
@@ -6,6 +6,15 @@ import type { Event } from '@workflow/world';
6
6
  * in host). Any subscribe() arriving during this window cancels the check.
7
7
  */
8
8
  export declare const DEFERRED_CHECK_DELAY_MS = 100;
9
+ /**
10
+ * Floor for the deferred-check delay, so a too-low override can't manufacture
11
+ * spurious divergence (each false positive burns a divergence-recovery retry
12
+ * and can escalate to a terminal `CorruptedEventLogError`).
13
+ *
14
+ * Exported so tests needing the shortest legal delay can ask for it instead of
15
+ * hardcoding a number this floor would silently clamp up.
16
+ */
17
+ export declare const MIN_DEFERRED_CHECK_DELAY_MS = 10;
9
18
  export declare enum EventConsumerResult {
10
19
  /**
11
20
  * Callback consumed the event, but should not be removed from the callbacks list
@@ -22,6 +31,12 @@ export declare enum EventConsumerResult {
22
31
  }
23
32
  type EventConsumerCallback = (event: Event | null) => EventConsumerResult;
24
33
  export interface EventsConsumerOptions {
34
+ /**
35
+ * Callback invoked after an event has been consumed. Consumers such as the
36
+ * deterministic workflow clock must not observe events that are merely
37
+ * inspected while waiting for user code to subscribe to the next operation.
38
+ */
39
+ onConsumedEvent?: (event: Event) => void;
25
40
  /**
26
41
  * Callback invoked when a non-null event cannot be consumed by any registered
27
42
  * callback, indicating an orphaned or invalid event in the event log. The
@@ -30,6 +45,16 @@ export interface EventsConsumerOptions {
30
45
  * downstream subscribe() calls have a chance to cancel the check first.
31
46
  */
32
47
  onUnconsumedEvent: (event: Event) => void;
48
+ /**
49
+ * Callback invoked when an event is skipped because it repeats an event
50
+ * class the walk already consumed for the same entity. `firstEventType` is
51
+ * the type that recorded the class, which is the one the workflow observed.
52
+ * Diagnostics only: skipping is a normal outcome, not an error, though a
53
+ * `firstEventType` differing from `event.eventType` says the two writers
54
+ * decided the entity's outcome differently, which is worth more than an
55
+ * info log.
56
+ */
57
+ onDuplicateEvent?: (event: Event, firstEventType: Event['eventType']) => void;
33
58
  /**
34
59
  * Returns the current promise queue. The unconsumed event check is chained
35
60
  * onto this queue so it only fires after all pending async work (e.g.,
@@ -37,17 +62,82 @@ export interface EventsConsumerOptions {
37
62
  * deserialization delays the resolve() that triggers the next subscribe().
38
63
  */
39
64
  getPromiseQueue: () => Promise<void>;
65
+ /**
66
+ * Whether no data delivery is in flight (`isDeliveryIdle` in private.ts).
67
+ * The unconsumed-event check waits for this before it fires: a delivery in
68
+ * flight means the workflow VM is mid-reaction, and an event it has not
69
+ * claimed yet is an event it has not reached yet.
70
+ *
71
+ * Required rather than defaulting to always-idle: always-idle is exactly the
72
+ * pre-gate behavior, so a defaulted option would let a construction site opt
73
+ * a whole replay path back out without saying so. Tests that drive a consumer
74
+ * with no orchestrator context pass `() => true` to keep the pre-existing
75
+ * timing, and say so at the call site.
76
+ */
77
+ isDeliveryIdle: () => boolean;
40
78
  }
41
79
  export declare class EventsConsumer {
42
80
  eventIndex: number;
43
81
  readonly events: Event[];
44
82
  readonly callbacks: EventConsumerCallback[];
83
+ /**
84
+ * Events the ordered walk stepped over because nobody claimed them and their
85
+ * type carries no ordering claim. Each keeps the index it held in the log:
86
+ * consumers read {@link eventIndex} at consumption time to order their
87
+ * delivery against the rest of the log, and a late delivery must still make
88
+ * the claim its position gave it.
89
+ *
90
+ * Held in log order, drained in log order, and drained before every offer so
91
+ * a consumer registered after the walk passed the event still receives it.
92
+ */
93
+ private readonly parked;
94
+ /**
95
+ * Correlation ids of the {@link ONE_SHOT_EVENT_TYPES} events consumed so
96
+ * far, so a second resolution for one of them is recognized as unclaimable
97
+ * rather than parked for a consumer that cannot exist.
98
+ */
99
+ private readonly resolved;
100
+ /**
101
+ * `<class>:<correlationId>` for every event class the walk has already
102
+ * consumed, mapped to the event type that recorded it. The type is kept so a
103
+ * repeat that decided the same class *differently* (a `step_failed` behind a
104
+ * `step_completed`) can be reported as more than a re-commit. See
105
+ * {@link EventsConsumer.firstEventTypeOfClass}.
106
+ */
107
+ private readonly seenEventClasses;
108
+ private onConsumedEvent?;
45
109
  private onUnconsumedEvent;
110
+ private onDuplicateEvent?;
46
111
  private getPromiseQueue;
112
+ private isDeliveryIdle;
47
113
  private pendingUnconsumedCheck;
48
114
  private pendingUnconsumedTimeout;
49
115
  private unconsumedCheckVersion;
50
116
  constructor(events: Event[], options: EventsConsumerOptions);
117
+ /**
118
+ * The oldest event the walk stepped over that no consumer has claimed yet,
119
+ * if any. Parking is a bet that a consumer will be registered later, so at
120
+ * any point where no consumer ever will be again (the replay finishing is
121
+ * the definitive one), this answers which event the bet lost on.
122
+ */
123
+ get strandedEvent(): Event | undefined;
124
+ /**
125
+ * What the walk is still holding, or `undefined` when it holds nothing.
126
+ *
127
+ * Read at every point a replay stops, including the suspensions that are not
128
+ * settling points, so the held state reaches telemetry. A replay cannot tell
129
+ * a delivery awaiting a later consumer from one no consumer will ever
130
+ * register, so it reports rather than decides: the same `eventId` reported on
131
+ * suspension after suspension of one run is the shape that says the bet
132
+ * parking made is not going to pay off, and that shape is only visible across
133
+ * replays.
134
+ */
135
+ get parkedSummary(): {
136
+ count: number;
137
+ eventId: string;
138
+ eventType: Event['eventType'];
139
+ } | undefined;
140
+ append(events: Event[]): void;
51
141
  /**
52
142
  * Registers a callback function to be called after an event has been consumed
53
143
  * by a different callback. The callback can return:
@@ -58,7 +148,188 @@ export declare class EventsConsumer {
58
148
  * @param fn - The callback function to register.
59
149
  */
60
150
  subscribe(fn: EventConsumerCallback): void;
151
+ private notifyConsumedEvent;
61
152
  private consume;
153
+ /**
154
+ * Offer `currentEvent` to each registered callback in turn. Returns true
155
+ * when a callback consumed it. Does not move {@link eventIndex}: the ordered
156
+ * walk and the parked drain advance differently, so each does its own.
157
+ */
158
+ private offer;
159
+ /**
160
+ * Offer everything parked, oldest first, until a pass claims nothing.
161
+ *
162
+ * Each offer runs with {@link eventIndex} moved back to the position the
163
+ * parked event held in the log, because that is the position its consumer
164
+ * will register a delivery barrier under. Restoring the walk pointer
165
+ * afterwards is what keeps the two pointers from interfering.
166
+ */
167
+ private drainParked;
168
+ /**
169
+ * Release anything parked whose class a consumption has since recorded for
170
+ * the same entity, on the same terms as {@link skipDuplicateEvent}.
171
+ *
172
+ * The ordered walk decides a straggler at the event, but only for one of the
173
+ * two orders the copies can arrive in. When neither copy has a consumer yet,
174
+ * both park — the walk steps over the first and re-enters immediately, so
175
+ * the second is offered in the same tick, with no class recorded because
176
+ * nothing has been *consumed*. The drain then claims the first and the
177
+ * second is left held by a consumer list that will never grow the callback
178
+ * it needs, which the workflow function returning reports through
179
+ * {@link strandedEvent} as a replay divergence.
180
+ *
181
+ * Run before each offer pass rather than once, because the consumption that
182
+ * records the class happens inside the drain itself.
183
+ *
184
+ * Not specific to `attr_set`: `wait_completed` reaches the same state, and
185
+ * {@link ONE_SHOT_EVENT_TYPES} only covers it in the order where the
186
+ * consumption came first.
187
+ */
188
+ private dropParkedDuplicates;
189
+ /**
190
+ * Step the ordered walk over an event nobody claimed, holding on to it for a
191
+ * later consumer. Returns false when the event's type makes its position a
192
+ * decision record, which is the one case where nobody claiming it means the
193
+ * replay diverged.
194
+ */
195
+ private park;
196
+ /**
197
+ * The key `event`'s class is tracked under, or `undefined` for the events
198
+ * that belong to no class and are therefore never skipped: the types with no
199
+ * entry at all (`hook_received`, `hook_conflict`, `run_created`), and a
200
+ * classed type carrying no entity to track it under.
201
+ *
202
+ * {@link classifyEntityEvent} owns that rule, because the observability UI
203
+ * decides the same question about the same log and the two must not drift.
204
+ */
205
+ private eventClassKey;
206
+ /**
207
+ * Remembers that `event`'s class is now decided for its entity, if the type
208
+ * belongs to a class. First writer wins: the recorded type is the one the
209
+ * workflow observed, and a later repeat is measured against it.
210
+ */
211
+ private recordEventClass;
212
+ /**
213
+ * The type that already decided `event`'s class for the same entity, or
214
+ * `undefined` when nothing has: a second `step_created` for one step, a
215
+ * second terminal outcome, a second `step_started` after the step's result is
216
+ * already in the log.
217
+ *
218
+ * Such an event is committed but inert. Concurrent replays write into one
219
+ * log without a currency guard, so a replay working from a prefix that
220
+ * predates another replay's write can commit its own copy of work the log
221
+ * already records. That copy cannot change what the workflow observed: the
222
+ * outcome was decided by the first event of the class and every later replay
223
+ * reads that same event at the same log position, so ignoring the straggler
224
+ * is deterministic across replays.
225
+ *
226
+ * Classes are tracked separately, so passing one does not suppress another.
227
+ * A step whose result is in the log still reaches its `step_created` and
228
+ * `step_started` consumers if it has yet to see those classes.
229
+ *
230
+ * Consulted only after every registered callback has declined the event, so
231
+ * it can never take an event a consumer wanted. A retry's `step_started` is
232
+ * claimed by the step's live consumer and counts as an attempt exactly as
233
+ * before, and a second `step_created` reaching a step that has not finished
234
+ * is likewise consumed rather than skipped; only the copies nobody claims are
235
+ * skipped.
236
+ *
237
+ * Unlike the divergence report, this does *not* wait out the deferred window
238
+ * first, and it does not need to. The window buys time for a consumer that
239
+ * has yet to register, and no such consumer can want this event: the class
240
+ * was recorded by a consumption in this same replay, which means the entity's
241
+ * consumer was registered and took an event of this class, and correlation
242
+ * ids are minted from a monotonic ULID per body position, so nothing later in
243
+ * the body registers a second consumer under this id. Waiting would cost
244
+ * `getDeferredCheckDelayMs()` per straggler per replay for information that
245
+ * cannot arrive: 0.75% of production runs carry at least one straggler, and
246
+ * the p99 among those carries 155.
247
+ *
248
+ * The invariant to preserve if hook identity ever becomes caller-supplied
249
+ * (an idempotency key rather than a minted id): two `createHook` calls in one
250
+ * body could then share a correlation id, and the second consumer's
251
+ * `hook_created` would be a repeat of a class this replay already recorded.
252
+ * That would make skipping wrong for `hook_created`, and is the reason the
253
+ * class map lives next to the event types rather than being inferred.
254
+ */
255
+ private firstEventTypeOfClass;
256
+ /**
257
+ * Steps the walk over a sealed-log `noop` (specVersion >= 7): the World's
258
+ * backend wrote it to occupy a slot whose writer allocated the position and
259
+ * died, so the log's density arithmetic holds. It is invisible to the
260
+ * workflow: no consumer is offered it, no event class is recorded, and the
261
+ * deterministic clock does not advance, exactly as with
262
+ * {@link skipDuplicateEvent}, so a log that happens to contain one produces the same
263
+ * timestamps as a log that does not. (Its `createdAt` is the seal time,
264
+ * which can even postdate later slots' events; letting it touch the clock
265
+ * would leak the sealer's wall clock into replay.)
266
+ */
267
+ private skipSealedNoop;
268
+ /** Steps the walk over a repeat of an already-consumed class. */
269
+ private skipDuplicateEvent;
270
+ private handleEndOfLog;
271
+ private scheduleUnconsumedCheck;
272
+ /**
273
+ * Decide what a still-unconsumed event is, now that the promise queue has
274
+ * drained and the delivery gate says the VM is not mid-reaction.
275
+ *
276
+ * `mayPark` is false only for the end-of-log recheck of an event {@link park}
277
+ * already holds. Nothing in the first branch applies to one of those: it is
278
+ * not the event at the cursor, so the identity guard is not meaningful, and
279
+ * it is parked already.
280
+ *
281
+ * A duplicate class never arrives here. {@link consume} steps over one in the
282
+ * pass that offered it, before this check is ever scheduled, and a class
283
+ * recorded while the check was in flight can only have been recorded by a
284
+ * consumption inside {@link consume}, whose next pass re-offers this event
285
+ * and steps over it there, leaving the identity guard above to drop the
286
+ * in-flight check. One that parks before any consumption records its class
287
+ * is released later by {@link dropParkedDuplicates} instead.
288
+ */
289
+ private resolveUnconsumedEvent;
290
+ /**
291
+ * Run `fn` once no data delivery is in flight, polling the way
292
+ * `scheduleWhenIdle` does: let the promise queue drain, re-check a timer
293
+ * tick later, repeat.
294
+ *
295
+ * Without this the check is a bet that every delivery the walk is running
296
+ * ahead of lands inside a fixed window. Consumption is synchronous while the
297
+ * resolution it triggers is not: a step result hydrates in the host, resolves
298
+ * from a detached continuation behind `awaitEarlierDeliveries`, and only then
299
+ * does VM code run far enough to subscribe the next consumer. Replaying a
300
+ * batch of N parallel step results leaves N-1 of them on that detached path
301
+ * with the queue already drained, so the walk sits on the ordered event the
302
+ * VM is about to draw and the window is the only thing standing between a
303
+ * healthy run and `ReplayDivergenceError`.
304
+ *
305
+ * Shortening the window shows that mechanism directly: on identical event logs
306
+ * the local race repro corrupts 34 of 42 runs at a 10ms window and 0 of 114 at
307
+ * the 100ms default. That measures how the bet loses, not that the default
308
+ * loses it, and no measurement of a delivery outrunning 100ms exists either
309
+ * way. So read this as retiring the bet rather than as repairing an observed
310
+ * failure of that number: the delay is a user-settable env override, which
311
+ * leaves the old behavior one configuration away from losing on any backend.
312
+ *
313
+ * Termination is `hasParkedCommittedDelivery`'s: it counts only deliveries
314
+ * that resolve on their own, so nothing here can gate its own retirement. A
315
+ * genuinely orphaned event has no delivery to wait on and reaches `fn` on the
316
+ * first poll.
317
+ *
318
+ * What the gate gives up: for the ordered events that still reach
319
+ * `onUnconsumedEvent` rather than {@link park}, this stops being the thing
320
+ * that catches a diverged log while a delivery is in flight. The suspension
321
+ * and this check now wake from the same `isDeliveryIdle` edge, and
322
+ * `scheduleWhenIdle` fires on the first timer tick after idle while this waits
323
+ * a further `getDeferredCheckDelayMs()`. So a run with a pending `sleep()`
324
+ * suspends first, and `onWorkflowError` drops the divergence arriving second
325
+ * (its `'suspended'` branch demotes to `'replay'` and surfaces nothing),
326
+ * leaving a later `resume()` to decline into a cold replay. Pre-gate the
327
+ * suspension already won that race whenever the delivery landed inside the
328
+ * fixed window, so what changed is that the outcome stopped depending on
329
+ * timing. Nothing should treat this check as the mechanism that reports
330
+ * divergence on a log the run is still delivering into.
331
+ */
332
+ private whenDeliveryIdle;
62
333
  }
63
334
  export {};
64
335
  //# sourceMappingURL=events-consumer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"events-consumer.d.ts","sourceRoot":"","sources":["../src/events-consumer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAG7C;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,MAAM,CAAC;AAE3C,oBAAY,mBAAmB;IAC7B;;OAEG;IACH,QAAQ,IAAA;IACR;;OAEG;IACH,WAAW,IAAA;IACX;;OAEG;IACH,QAAQ,IAAA;CACT;AAED,KAAK,qBAAqB,GAAG,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,mBAAmB,CAAC;AAE1E,MAAM,WAAW,qBAAqB;IACpC;;;;;;OAMG;IACH,iBAAiB,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IAC1C;;;;;OAKG;IACH,eAAe,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CACtC;AAED,qBAAa,cAAc;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAM;IAC9B,QAAQ,CAAC,SAAS,EAAE,qBAAqB,EAAE,CAAM;IACjD,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,eAAe,CAAsB;IAC7C,OAAO,CAAC,sBAAsB,CAA8B;IAC5D,OAAO,CAAC,wBAAwB,CAA8C;IAC9E,OAAO,CAAC,sBAAsB,CAAK;gBAEvB,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,qBAAqB;IAO3D;;;;;;;;OAQG;IACH,SAAS,CAAC,EAAE,EAAE,qBAAqB;IAgBnC,OAAO,CAAC,OAAO,CA+Db;CACH"}
1
+ {"version":3,"file":"events-consumer.d.ts","sourceRoot":"","sources":["../src/events-consumer.ts"],"names":[],"mappings":"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"}