-
Notifications
You must be signed in to change notification settings - Fork 20
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
Support for Azure Functions #97
Conversation
Thank you @lfalck. It's a shame Functions team doesn't consider support for the plugins. There are other things that people as for, such as Sessions support, that is still not available. Sooner or later it will arrive, but for now it seems that a manual approach is the only options. Looking at the PR there are a few things I can think of.
Let's answer these and see if there's anything else that needs to be done. Overall, adding support for Functions is likely to be a welcomed feature 👍 |
Yeah it would be really nice! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One more change and can be merged.
Probably two different dimensions - latency vs memory allocation/GC. Probably not worth looking into it until there's a strong evidence that there's a problem. Once you update you PR with the request change, I'll release 4.2.0.
|
Yeah you are right, hopefully it won't be a problem.
I gave a shot at updating the README, feel free to change as needed.
Great! 👍 |
Thank you @lfalck |
Thank you @SeanFeldman for creating this plugin! 👍 |
@lfalck could you please share your twitter account with me to give you the credit? Thanks. |
@SeanFeldman Thanks! It is ludvigfalck |
Great timing! I've done something similar, but rather than write extension methods off message, I'd just copied some of the underlying implementation into our (receiving) functions. Sean, now that Azure Functions supports user-extensible triggers, how would feel about taking/creating a sub-project to extend the existing ServiceBus(x)Trigger with the attachments plugin support? Here's an example on extending the existing Cosmos trigger to support POCOs |
Hi!
Great job with this plugin, really nice!
Like #31 i would like to use it with Azure Functions and it seems like adding plugin support might take a while:
Therefore i added these extensions to Message as a temporary solution. Usage looks something like this:
Sending
Receiving
Here is a full example with Azure functions sending and receiving from Service Bus.
What do you think?