Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documented example of using a webjob in f# #1289

Merged
merged 3 commits into from
Dec 2, 2016
Merged
Changes from 2 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
5 changes: 5 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,11 @@ 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