Multiple triggers for an Azure Function
问题 We have an Azure Function that has an event hub trigger. Is it possible to have a trigger on more than one event hub for the same Azure Function? 回答1: No, this is not a supported scenario at the moment. From comments (Ling Toh Jan 18 '17 at 18:23): There are no plans to support multiple triggers per Function. You will have to create a Function for each EventHub. If there is common code that may be shared between Functions, you may move them to a helper method that can be called from each