-
Notifications
You must be signed in to change notification settings - Fork 357
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
ServiceBusTrigger and ServiceBus outpub binding in a transaction #2207
Comments
|
@alrod thank you. Just before I close this issue, is there a documented list of things that are available for injection for Service Bus trigger? |
It looks like we do not have the full list in the docs. The only list I found is message properties: You can find full list here: Line 142 in 2e374a2
|
That is peculiar. I've raised a doco issue (https://github.com/MicrosoftDocs/azure-docs/issues/32126) to point that out. Would be nice have MessageReader in the context of the output binding, but affraid the modular design will not allow it. If you have two output bindings with two different namespaces, this would not work. |
You will hate me, but one more question - when using Is there a way to suppress it or indicated to the SDK that a function will take care of the message completion? |
🤦♂️ Fantastic, thank you! |
Azure Service Bus supports a transactional processing of an incoming message with emitting the outgoing messages using
TransactionScope
and Send-Via feature.As of today (using Functions 2.0 / WebJobs 3.0) there's no way to achieve this as
ServiceBusTrigger
andServiceBusAttribute
used for collectors do not share the sameServiceBusConnection
.The text was updated successfully, but these errors were encountered: