-
|
I'm using RabbitMQ events in OrchardCore Workflows. I want a single workflow to handle messages from multiple topics, but the WorkflowManager uses .First() which prevents some events from triggering: Workflowmanager code: My event task filters by topic in CanExecute(): Question: Should I create separate workflows per topic, or is there a pattern for handling multiples of the same event in one workflow? |
Beta Was this translation helpful? Give feedback.
Answered by
Piedone
Jan 28, 2026
Replies: 1 comment 1 reply
-
|
I think the assumption everywhere is that workflows have a single starting point. So, you'll need to create separate workflows, yes. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
weirdyang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the assumption everywhere is that workflows have a single starting point. So, you'll need to create separate workflows, yes.