Architect continuous polling mode for run_projection API #276
Labels
No labels
adr
automated
bug
chore
dependencies
documentation
enhancement
epic
github-actions
P1-high
P2-medium
P3-low
release
research
rust
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
jwilger/eventcore#276
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
During the ADR-030 layered API cleanup, we removed
PollMode::Continuousas dead code because it wasn't accessible through the publicrun_projection()API. However, continuous polling is a legitimate use case for long-running projection processes that need to:Problem
The current
run_projection()API only supports batch mode - it processes available events once and exits. There's no public API for continuous polling.Deliverables
Design Considerations
run_projection_continuous())?Projectortrait?Completed in #345 — ADR-0036 documents ProjectionRunner as the public API for continuous polling mode.