Azure WebJobs SDK
Перейти к файлу
Brett Samblanet 61aa424616 adding initial ILogger/AppInsights support 2017-04-19 14:54:16 -07:00
.nuget Add missing reference to feed for SkipStrongNames. 2014-01-07 10:21:51 -08:00
perf/Microsoft.Azure.WebJobs.Perf adding initial ILogger/AppInsights support 2017-04-19 14:54:16 -07:00
sample/SampleHost adding initial ILogger/AppInsights support 2017-04-19 14:54:16 -07:00
src adding initial ILogger/AppInsights support 2017-04-19 14:54:16 -07:00
test adding initial ILogger/AppInsights support 2017-04-19 14:54:16 -07:00
tools Setting next release version 2017-02-28 09:25:40 -08:00
.gitattributes Fixing file encoding 2015-09-01 20:44:45 -07:00
.gitignore Fixing fxcop issues 2015-08-14 14:09:58 -07:00
Build.ps1 Rename assemblies to WebJobs (#114). 2014-08-18 15:54:56 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2015-04-27 14:02:52 -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
README.md Update README.md 2016-12-02 16:25:18 -08:00
Settings.StyleCop Extending struct data binding to support nullable types 2016-10-15 11:14:08 -07:00
WebJobs.proj updating nuget.exe download version 2017-02-08 12:36:16 -08:00
WebJobs.sln Missing ExtendedErrorInfo fix (#922) 2016-12-07 11:29:58 -08:00
appveyor.yml removed hardcoded path 2016-11-23 10:01:59 -08:00

README.md

Azure WebJobs SDK

Branch Status
dev Build status
master 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

See the documentation

License

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

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.

Questions?

See the getting help section in the wiki.