Tiago Andrade e Silva
Tiago Andrade e Silva

Reputation: 986

Migrating an Azure Functions project to Durable Azure Functions

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: enter image description here

Upvotes: 1

Views: 450

Answers (1)

Mikhail Shilkov
Mikhail Shilkov

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

Related Questions