title | description | services | documentationcenter | author | manager | editor | tags | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create an event processing function | Microsoft Docs |
Use Azure Functions create a C# function that runs based on an event timer. |
functions |
na |
ggailey777 |
erikre |
84bd0373-65e2-4022-bcca-2b9cd9e696f5 |
functions |
multiple |
get-started-article |
multiple |
na |
09/25/2016 |
glenga |
Azure Functions is an event-driven, compute-on-demand experience that enables you to create scheduled or triggered units of code implemented in a variety of programming languages. To learn more about Azure Functions, see the Azure Functions Overview.
This topic shows you how to create a new function in C# that executes based on an event timer to add messages to a storage queue.
Before you can create a function, you need to have an active Azure account. If you don't already have an Azure account, free accounts are available.
A function app hosts the execution of your functions in Azure. Before you can create a function, you need to have an active Azure account. If you don't already have an Azure account, free accounts are available.
-
Go to the Azure Functions portal and sign-in with your Azure account.
-
If you have an existing function app to use, select it from Your function apps then click Open. To create a new function app, type a unique Name for your new function app or accept the generated one, select your preferred Region, then click Create + get started.
-
In your function app, click + New Function > TimerTrigger - C# > Create. This creates a function with a default name that is run on the default schedule of once every minute.
-
In your new function, click the Integrate tab > New Output > Azure Storage Queue > Select.
-
In Azure Storage Queue output, select an existing Storage account connection, or create a new one, then click Save.
-
Back in the Develop tab, replace the existing C# script in the Code window with the following code:
using System; public static void Run(TimerInfo myTimer, out string outputQueueItem, TraceWriter log) { // Add a new scheduled message to the queue. outputQueueItem = $"Ping message added to the queue at: {DateTime.Now}."; // Also write the message to the logs. log.Info(outputQueueItem); }
This code adds a new message to the queue with the current date and time when the function is executed.
-
Click Save and watch the Logs windows for the next function execution.
-
(Optional) Navigate to the storage account and verify that messages are being added to the queue.
-
Go back to the Integrate tab and change the schedule field to
0 0 * * * *
. The function now runs once every hour.
This is a very simplified example of both a timer trigger and a storage queue output binding. For more information, see both the Azure Functions timer trigger and the Azure Functions triggers and bindings for Azure Storage topics.
See these topics for more information about Azure Functions.
- Azure Functions developer reference
Programmer reference for coding functions and defining triggers and bindings. - Testing Azure Functions
Describes various tools and techniques for testing your functions. - How to scale Azure Functions
Discusses service plans available with Azure Functions, including the Consumption hosting plan, and how to choose the right plan.
[!INCLUDE Getting Started Note]