feat(workflow): add WorkflowRunnerService for event-driven workflow firing#22
Open
mpge wants to merge 1 commit intofeat/workflow-executorfrom
Open
feat(workflow): add WorkflowRunnerService for event-driven workflow firing#22mpge wants to merge 1 commit intofeat/workflow-executorfrom
mpge wants to merge 1 commit intofeat/workflow-executorfrom
Conversation
…iring Ports the NestJS workflow-runner.service.ts to Spring. Loads active Workflows for a trigger event (in position order), evaluates conditions via WorkflowEngine, dispatches matches to WorkflowExecutorService, and writes a WorkflowLog audit row per Workflow considered. - Honors stop_on_match (only when the workflow actually matches) - Catches executor failures so one bad workflow never blocks the rest (failure stamped on the log row via errorMessage) - Malformed conditions JSON logs a warning and treats the workflow as non-matching - Null/blank conditions match all tickets (matches NestJS semantics) Follow-up PR will add the @eventlistener that bridges TicketEvent into runForEvent.
2 tasks
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.
Summary
Ports the NestJS
workflow-runner.service.tsto Spring. This is the orchestrator piece that loads active Workflows for a trigger event (inpositionorder), evaluates conditions viaWorkflowEngine, dispatches matches toWorkflowExecutorService, and writes aWorkflowLogaudit row per Workflow considered.Behavior
stop_on_match— but only when the workflow actually matches (failing workflows don't halt the chain)errorMessage)Scope
Runner only. Follow-up PR:
@EventListenerthat bridgesTicketEvent→runForEventDependencies
feat/workflow-executor). Will rebase ontomainonce feat(workflow): add WorkflowExecutorService for action dispatch #21 merges.Test plan
test,checkstyle