Reputation: 986
Trying to convert my Azure Function project to use Durable Azure Functions. I added the E1_HelloSequence sample class to my project, but the durable function never shows up as one of the Http functions listed when the Azure function runtime starts locally. Any one able to provide some guidance ?
The DurableTaskExtension is initiated ... and the DurableFunction (HelloSequence) is listed ... but not listed as an Http Function:
Upvotes: 1
Views: 450
Reputation: 35144
That's because they are not HTTP functions, they are rather triggered by queue messages behind the scenes.
There are some webhooks on Durable Function extension level on top of that, which you can use: HTTP APIs doc describes that in more details.
Have a look at HttpSyncStart
sample to see how to add a custom HTTP endpoint on top of your orchestration.
Upvotes: 4