Exemple #1
0
        static void Main(string[] args)
        {
          var writer = new DocumentDBWriter();
          var task = writer.WriteDocument(MessageType.Energy,
                "{\"Kwh\":250819.0,\"Deviceid\":\"energy0\",\"Timestamp\":\"2015-01-20T15:00:33.2764744Z\",\"RoomNumber\":0}");

          Task.WaitAll(task); // block while the task completes

          var result = task.Result;
        }
Exemple #2
0
        // Please set the following connection strings in app.config for this WebJob to run:
        // AzureWebJobsDashboard and AzureWebJobsStorage
        static void Main()
        {
             // make sure consumer group exists
            NamespaceManager manager = NamespaceManager.CreateFromConnectionString(ConfigurationManager.AppSettings["ServiceBus.ConnectionString"] + ";TransportType=Amqp");
            ConsumerGroupDescription description = new ConsumerGroupDescription(ConfigurationManager.AppSettings["ServiceBus.Path"], ConfigurationManager.AppSettings["ServiceBus.ConsumerGroup"]);
            manager.CreateConsumerGroupIfNotExists(description);

            //get a handle on the consumer group for the event hub we want to read from
            var factory = MessagingFactory.CreateFromConnectionString(ConfigurationManager.AppSettings["ServiceBus.ConnectionString"] + ";TransportType=Amqp");
            var client = factory.CreateEventHubClient(ConfigurationManager.AppSettings["ServiceBus.Path"]);
            var group = client.GetConsumerGroup(ConfigurationManager.AppSettings["ServiceBus.ConsumerGroup"]);

            while (true)
            {
                Task.WaitAll(client.GetRuntimeInformation().PartitionIds.Select(id => Task.Run(() =>
                {
                    var receiver = @group.CreateReceiver(id);

                    Trace.TraceInformation("Waiting for messages " + receiver.PartitionId);

                    while (true)
                    {
                        try
                        {
                            //read the message
                            var message = receiver.Receive();

                            if (message == null)
                                continue;

                            var body = Encoding.UTF8.GetString(message.GetBytes());

                            if (body == null)
                                continue;

                            var type = MessageType.None;

                            switch (message.PartitionKey.ToLower())
                            {
                                case "energy":
                                    type = MessageType.Energy;
                                    break;
                                case "temperature":
                                    type = MessageType.Temperature;
                                    break;
                                case "humidity":
                                    type = MessageType.Humidity;
                                    break;
                                case "light":
                                    type = MessageType.Light;
                                    break;
                            }

                            if (type == MessageType.None)
                                continue;

                            var writer = new DocumentDBWriter();
                            var task = writer.WriteDocument(type, body);

                            Task.WaitAll(task); // block while the task completes

                            Console.WriteLine(task.Result);
                        }
                        catch (Exception e)
                        {
                            Console.WriteLine(e.Message);
                            //suppress for simplicity
                        }
                    }
                })).ToArray());
            }
        }
Exemple #3
0
        // Please set the following connection strings in app.config for this WebJob to run:
        // AzureWebJobsDashboard and AzureWebJobsStorage
        static void Main()
        {
            // make sure consumer group exists
            NamespaceManager         manager     = NamespaceManager.CreateFromConnectionString(ConfigurationManager.AppSettings["ServiceBus.ConnectionString"] + ";TransportType=Amqp");
            ConsumerGroupDescription description = new ConsumerGroupDescription(ConfigurationManager.AppSettings["ServiceBus.Path"], ConfigurationManager.AppSettings["ServiceBus.ConsumerGroup"]);

            manager.CreateConsumerGroupIfNotExists(description);

            //get a handle on the consumer group for the event hub we want to read from
            var factory = MessagingFactory.CreateFromConnectionString(ConfigurationManager.AppSettings["ServiceBus.ConnectionString"] + ";TransportType=Amqp");
            var client  = factory.CreateEventHubClient(ConfigurationManager.AppSettings["ServiceBus.Path"]);
            var group   = client.GetConsumerGroup(ConfigurationManager.AppSettings["ServiceBus.ConsumerGroup"]);

            while (true)
            {
                Task.WaitAll(client.GetRuntimeInformation().PartitionIds.Select(id => Task.Run(() =>
                {
                    var receiver = @group.CreateReceiver(id);

                    Trace.TraceInformation("Waiting for messages " + receiver.PartitionId);

                    while (true)
                    {
                        try
                        {
                            //read the message
                            var message = receiver.Receive();

                            if (message == null)
                            {
                                continue;
                            }

                            var body = Encoding.UTF8.GetString(message.GetBytes());

                            if (body == null)
                            {
                                continue;
                            }

                            var type = MessageType.None;

                            switch (message.PartitionKey.ToLower())
                            {
                            case "energy":
                                type = MessageType.Energy;
                                break;

                            case "temperature":
                                type = MessageType.Temperature;
                                break;

                            case "humidity":
                                type = MessageType.Humidity;
                                break;

                            case "light":
                                type = MessageType.Light;
                                break;
                            }

                            if (type == MessageType.None)
                            {
                                continue;
                            }

                            var writer = new DocumentDBWriter();
                            var task   = writer.WriteDocument(type, body);

                            Task.WaitAll(task); // block while the task completes

                            Console.WriteLine(task.Result);
                        }
                        catch (Exception e)
                        {
                            Console.WriteLine(e.Message);
                            //suppress for simplicity
                        }
                    }
                })).ToArray());
            }
        }