AzureTicker.Worker.WorkerRole.Run C# (CSharp) Method

Run() public method

public Run ( ) : void
return void
        public override void Run()
        {
            // This is a sample worker implementation. Replace with your logic.
            Trace.WriteLine("AzureTicker.Worker entry point called", "Information");

            HttpSelfHostServer server = null;
            try
            {
                var endpoint = RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["webapi"];
                Uri baseAddress = new Uri(string.Format("{0}://{1}", endpoint.Protocol, endpoint.IPEndpoint.ToString()));

                // Set up server configuration
                HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(baseAddress);
                config.Routes.MapHttpRoute(
                    name: "DefaultApi",
                    routeTemplate: "api/{controller}/{id}",
                    defaults: new { id = RouteParameter.Optional }
                );

                // Create server
                server = new HttpSelfHostServer(config);

                // Start listening
                server.OpenAsync().Wait();
            }
            catch (Exception e)
            {
                Trace.WriteLine("Failed to open Web Api host.", "Error");
                Trace.WriteLine(e.ToString(), "Error");
                if (server != null)
                {
                    server.Dispose();
                }
            }

            while (true)
            {
                Thread.Sleep(10000);
            }
        }
WorkerRole