-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide support for multi-staged message processing #25
Comments
I've written this before and can take this up/advise |
This will maybe made easier once we introduced the message handlers. |
Yes and no, yes because every stage will have a handler but the pump should orchestrate thing, but not a prio for now. |
Like we talked about offline. |
Hmm, we may want to hold on with this so we can first migrate to the |
Hmm, with the current setup, you could already to that yourself (a bit), as the router is registered in the dependency injection container, you could retrieve it in your custom message handler, change the messaging context, and send the received message again through the message router. |
Yes but it should be simpler, but I'll provide some more examples later on |
The message router needs to have a |
Provide support for multi-staged message processing.
An example of where this is useful is when one process needs to:
Every step is a small piece of code doing one thing after which it will be considered "done". Every step that is done will be flagged as completed and should not be re-executed.
The messaging infrastructure should:
Important: Not all ours sources will support this and will only be Azure Service Bus at first sight.
The text was updated successfully, but these errors were encountered: