Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/fsharp/using-fsharp-on-azure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ A [Webhook](https://en.wikipedia.org/wiki/Webhook) is a callback triggered via a

Webhooks can be implemented in F# and hosted on Azure via an [Azure Function in F# with a Webhook Binding](https://docs.microsoft.com/azure/azure-functions/functions-bindings-http-webhook).

## Using Webjobs with F# #

[Webjobs](https://docs.microsoft.com/en-us/azure/app-service-web/web-sites-create-web-jobs) are programs you can run in your App Service web app in three ways: on demand, continuously, or on a schedule.

[Example F# Webjob](https://github.com/andredublin/fsharp-azure-webjob)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: would prefer a newline before this line.


## Implementing Timers on Azure with F# #

Timer triggers call functions based on a schedule, one time or recurring.
Expand Down