Azure WebJobs SDK
Перейти к файлу
Alexey Rodionov e2d32b2152 Adding InMemoryScaleMetricsRepository 2023-03-29 10:06:45 -07:00
.github Add `.github/fabricbot.json` (#2890) 2022-07-29 13:32:44 -07:00
.nuget Add missing reference to feed for SkipStrongNames. 2014-01-07 10:21:51 -08:00
build Scaler apis (#2954) 2023-03-23 10:43:21 -07:00
sample/SampleHost Scaler apis (#2954) 2023-03-23 10:43:21 -07:00
src Adding InMemoryScaleMetricsRepository 2023-03-29 10:06:45 -07:00
test Adding InMemoryScaleMetricsRepository 2023-03-29 10:06:45 -07:00
tools Updating build to use Azure DevOps. 2023-01-18 11:51:42 -08:00
.gitattributes Fixing file encoding 2015-09-01 20:44:45 -07:00
.gitignore benchmarks added 2020-10-07 10:29:58 -07:00
.travis.yml Updating OSX build image 2017-10-18 09:49:07 -07:00
Build.ps1 Fixed build variable expression notation and envar set. 2023-02-21 14:17:59 -08:00
CONTRIBUTING.md Update readme with more documentation and contributing resources 2018-08-10 15:07:53 -07:00
CustomDictionary.xml Added AppSetting, removed AllowTokens 2017-03-21 09:41:21 -07:00
ISSUE_TEMPLATE.md Update to issue template 2016-09-02 20:56:24 -07:00
LICENSE.txt Open Source Prep: Updating file headers and license.txt 2015-04-22 16:14:26 -07:00
NuGet.Config Add app insights logging to e2e test run 2017-09-18 22:53:25 -07:00
README.md Updating build to use Azure DevOps. 2023-01-18 11:51:42 -08:00
SECURITY.md Updating repo security information (#2702) 2021-04-15 11:59:59 -07:00
Settings.StyleCop Extending struct data binding to support nullable types 2016-10-15 11:14:08 -07:00
WebJobs-WithAnalyzers.sln Removing analyzers from WebJobs solution and introducing a solution with them 2018-02-05 17:38:35 -08:00
WebJobs.sln Upgrading WebJobs.Host.Storage to v12 Azure Storage sdk (#2764) 2021-10-15 19:25:56 -04:00
azure-pipelines.yml Added tag triggers to build. 2023-03-06 15:15:14 -08:00
build.cmd Build cleanup 2017-07-18 19:29:16 -07:00
build.sh Removing analyzers from WebJobs solution and introducing a solution with them 2018-02-05 17:38:35 -08:00
dotnet-install.ps1 Upgrading to .NET Core 2.1 2018-06-01 09:35:47 -07:00
runtests.ps1 Updating build to use Azure DevOps. 2023-01-18 11:51:42 -08:00
src.ruleset Fixing ruleset configuration and addressing build warnings 2018-06-22 09:59:32 -07:00
stylecop.json Initial migration to .NET Standard 2.0 (.NET Core support) 2017-07-13 15:46:26 -07:00
webjobs.png Adding logo 2017-06-19 18:20:39 -07:00

README.md

Azure WebJobs SDK

Branch Status
master Build Status
dev Build Status
v2.x Build Status

The Azure WebJobs SDK is a framework that simplifies the task of writing background processing code that runs in Azure. The Azure WebJobs SDK includes a declarative binding and trigger system that works with Azure Storage Blobs, Queues and Tables as well as Service Bus. The binding system makes it incredibly easy to write code that reads or writes Azure Storage objects. The trigger system automatically invokes a function in your code whenever any new data is received in a queue or blob.

In addition to the built in triggers/bindings, the WebJobs SDK is fully extensible, allowing new types of triggers/bindings to be created and plugged into the framework in a first class way. See Azure WebJobs SDK Extensions for details. Many useful extensions have already been created and can be used in your applications today. Extensions include a File trigger/binder, a Timer/Cron trigger, a WebHook HTTP trigger, as well as a SendGrid email binding.

Usually you'll host the WebJobs SDK in Azure WebJobs, but you can also run your jobs in a Worker Role. The Azure WebJobs feature of Azure Web Apps provides an easy way for you to run programs such as services or background tasks in a Web App. You can upload and run an executable file such as an .exe, .cmd, or .bat file to your Web App. In addition to the benefits listed above, using the Azure WebJobs SDK to write WebJobs also provides an integrated Dashboard experience in the Azure management portal, with rich monitoring and diagnostics information for your WebJob runs.

Documentation

Check out the getting started guide, the how-to guide and the wiki. For more information on Azure and .NET see here.

Contributing

We welcome outside contributions. If you are interested in contributing, please take a look at our CONTRIBUTING guide.

For details on development prereqs and running tests see here.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Reporting a Vulnerability

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) through https://msrc.microsoft.com or by emailing secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the MSRC Report an Issue FAQ.

Please do not open issues for anything you think might have a security implication.

License

This project is under the benevolent umbrella of the .NET Foundation and is licensed under the MIT License

Questions?

See the getting help section in the wiki.