docs(intent): the create-from's step axis and mode: once|append - #199
Merged
Conversation
The DSL reference's event-driven creation section now documents both axes of the event vocabulary on a generates create-from - the source's lifecycle and a process step - and the mode: cardinality: once (default, at most one target per source) or append (one per delivered event), which is what expresses a log entry per step or a protocol line per transition. Says plainly what append is not: the absence of a guard rather than a state-aware one, so a redelivery appends a duplicate and the void-and-reissue case is not what it expresses. The glue page's event axis lists the create-from among the consumers of a step moment and states the at-least-once contract.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents the two
generates.eventadditions from eclipse-dirigible/dirigible#6800.docs/help/intent/dsl-reference.md— the event-driven creation section gains:onStepReached/onStepCompleted: { process, step }, with the rules that are specific to a create-from (the process must run on thefrom:entity, the step must be a user/service task, the source must be local,when:optional) and the emitted step-scoped topic.mode: once|append— a table of the two values, whatappendis for (a log entry per step, a protocol line per transition), and a warning block on what it is not: the absence of a guard rather than a state-aware one, so a redelivery appends a duplicate and the void-and-reissue case needs a guard onmode: onceinstead.generates.event.moderow in the construct index; the at-most-once bullet now points atmode:for the back-reference's second role.docs/help/intent/glue.md— the event axis lists departures and event-driven create-froms among its consumers, states the at-least-once delivery contract on both axes, and the feature table rows are updated.npx vitepress build docspasses.