Skip to content

Commit b13b56f

Browse files
committed
Add links to orchestration and activity triggers
1 parent 6ce0cf8 commit b13b56f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

articles/azure-functions/durable/durable-functions-cloud-backup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ A Durable Functions approach gives you all of the mentioned benefits with very l
2626

2727
This article explains the following functions in the sample app:
2828

29-
* `E2_BackupSiteContent`: An orchestrator function that calls `E2_GetFileList` to obtain a list of files to back up, then calls `E2_CopyFileToBlob` to back up each file.
30-
* `E2_GetFileList`: An activity function that returns a list of files in a directory.
29+
* `E2_BackupSiteContent`: An [orchestrator function](durable-functions-bindings.md#orchestration-trigger) that calls `E2_GetFileList` to obtain a list of files to back up, then calls `E2_CopyFileToBlob` to back up each file.
30+
* `E2_GetFileList`: An [activity function](durable-functions-bindings.md#activity-trigger) that returns a list of files in a directory.
3131
* `E2_CopyFileToBlob`: An activity function that backs up a single file to Azure Blob Storage.
3232

3333
### E2_BackupSiteContent orchestrator function

articles/azure-functions/durable/durable-functions-monitor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Once you have an API key, add the following **app setting** to your function app
4545

4646
This article explains the following functions in the sample app:
4747

48-
* `E3_Monitor`: An orchestrator function that calls `E3_GetIsClear` periodically. It calls `E3_SendGoodWeatherAlert` if `E3_GetIsClear` returns true.
49-
* `E3_GetIsClear`: An activity function that checks the current weather conditions for a location.
48+
* `E3_Monitor`: An [orchestrator function](durable-functions-bindings.md#orchestration-trigger) that calls `E3_GetIsClear` periodically. It calls `E3_SendGoodWeatherAlert` if `E3_GetIsClear` returns true.
49+
* `E3_GetIsClear`: An [activity function](durable-functions-bindings.md#activity-trigger) that checks the current weather conditions for a location.
5050
* `E3_SendGoodWeatherAlert`: An activity function that sends an SMS message via Twilio.
5151

5252
### E3_Monitor orchestrator function

articles/azure-functions/durable/durable-functions-phone-verification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ The complexity of this scenario is greatly reduced when you use Durable Function
3030

3131
This article walks through the following functions in the sample app:
3232

33-
* `E4_SmsPhoneVerification`: An orchestrator function that performs the phone verification process, including managing timeouts and retries.
34-
* `E4_SendSmsChallenge`: An activity function that sends a code via text message.
33+
* `E4_SmsPhoneVerification`: An [orchestrator function](durable-functions-bindings.md#orchestration-trigger) that performs the phone verification process, including managing timeouts and retries.
34+
* `E4_SendSmsChallenge`: An [orchestrator function](durable-functions-bindings.md#activity-trigger) that sends a code via text message.
3535

3636
### E4_SmsPhoneVerification orchestrator function
3737

articles/azure-functions/durable/durable-functions-sequence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Function chaining refers to the pattern of executing a sequence of functions in
1717

1818
This article explains the following functions in the sample app:
1919

20-
* `E1_HelloSequence`: An orchestrator function that calls `E1_SayHello` multiple times in a sequence. It stores the outputs from the `E1_SayHello` calls and records the results.
21-
* `E1_SayHello`: An activity function that prepends a string with "Hello".
20+
* `E1_HelloSequence`: An [orchestrator function](durable-functions-bindings.md#orchestration-trigger) that calls `E1_SayHello` multiple times in a sequence. It stores the outputs from the `E1_SayHello` calls and records the results.
21+
* `E1_SayHello`: An [activity function](durable-functions-bindings.md#activity-trigger) that prepends a string with "Hello".
2222
* `HttpStart`: An HTTP triggered function that starts an instance of the orchestrator.
2323

2424
### E1_HelloSequence orchestrator function

0 commit comments

Comments
 (0)