Closed pragnagopa closed 6 years ago
@jdneo - Maven plugin needs to updated to generate function.json with the cardinality https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-hubs#trigger---configuration
@pragnagopa Seems this will be another breaking change for the runtime.
Is there any ETA for the following actions?
This is not a breaking change. It adds support to specify cardinality which allows trigger input to be received as an array
Cool, I'll let you know when the template is updated. Tracking here: https://github.com/Microsoft/azure-maven-plugins/issues/330
@pragnagopa is there a related PR around the type that is used when this is turned on? Like a way for the Java worker to accept and send to a method that has like List<EventData>
as the trigger type?
@mhoeger is looking into https://github.com/Azure/azure-functions-host/pull/3170 . For out of proc languages, we do not have support for strong types like EventData. For this scenario, it would be a string[] array
Fixes #14