Click here to Skip to main content
15,884,629 members
Articles / Database Development / SQL Server / SQL Server 2008

Event-Driven Architecture in the Clouds with Windows Azure

,
Rate me:
Please Sign up or sign in to vote.
4.95/5 (23 votes)
5 Feb 2010CPOL14 min read 71K   577   58  
To demonstrate Azure and EDA, this article will show you how to build a flight delay management system for all US airports in clouds with Windows Azure.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FlightUpdates.Utility.Constants
{
    /// <summary>
    /// Queue end points
    /// </summary>
    public struct CloudQueues
    {
        public const string FlightDelayMessages = "FlightUpdatesQueue";
        public const string FlightUpdatesLogs = "FlightUpdatesLogs";
    }

    /// <summary>
    /// Queue reference names (note: lower case queue names required - per current Azure standards [1/3/2010])
    /// </summary>
    public struct CloudQueues_QueueReferenceNames
    {
        public const string FlightDelayMessages = "flightdelaymessagequeue";
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions