Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4025816
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:53:37+00:00 2026-05-20T10:53:37+00:00

I have a windows Service that start some tasks based on a configuration. Each

  • 0

I have a windows Service that start some tasks based on a configuration.

Each task start on its own thread, some tasks runes once per day.

I’m using Thread.Sleep() and calculate the time for the next run.

The problem is that sometimes after 2 or 3 days the service is still running but some tasks just dont run.

The sleep period is right, everything is working fine and I am not getting any exceptions.

Is there anything that could make a thread stop or the sleep method abort the thread?

this is the main function of the thread

private void TaskLifeCycle()
    {
        try
        {
            // Create task object.
            Type taskType = Type.GetType(this.ConfigurationElement.Task);
            DebtLogic.Service.BackgroundTask bgTask = Activator.CreateInstance(taskType) as BackgroundTask;
            bgTask.Context = this;
            FireEvent(CreatedEventKey, new BackgroundTaskEventArgs(bgTask));
            FireEvent(InitilizingEventKey, new BackgroundTaskEventArgs(bgTask));
            bgTask.Initilize();
            FireEvent(InitilizedEventKey, new BackgroundTaskEventArgs(bgTask));
                // while the thread is alive, and did not abort then run.
            while (this.CurrentThread.IsAlive)
            {
                try
                {
                    //can run then block
                    if (CanRun(bgTask))
                    {
                        Run(bgTask);
                    }
                }
                catch (ThreadAbortException)
                {
                    return;
                }
                catch (Exception ex)
                {
                    FireEvent(ErrorEventKey,new BackgroundTaskErrorArgs(ex) );
                }
            }
            bgTask.Dispose();
        }
        catch (ThreadAbortException)
        {
            return;
        }
        catch (Exception ex)
        {
            FireEvent(ErrorEventKey, new BackgroundTaskErrorArgs(ex));
        }
    }
 private bool CanRun(BackgroundTask bgTask)
    {
        if (this.ConfigurationElement.EventBasedTask)
        {
            return bgTask.CanRun();
        }
        TimeSpan time;
        if (this.ConfigurationElement.Time != TimeSpan.Zero)
        {
            time = this.ConfigurationElement.Time - DateTime.Now.TimeOfDay;
            if (time.TotalMilliseconds < 0)
                time = time.Add(new TimeSpan(24, 0, 0));
        }
        else
        {
            time = new TimeSpan(0, 0, this.ConfigurationElement.Interval);
        }
        Thread.Sleep(time);
        return bgTask.CanRun();
    }

the Run and Initialize methods are abstract methods that calls the task

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T10:53:37+00:00Added an answer on May 20, 2026 at 10:53 am

    Instead of having a thread that sleeps for a long time. Make a short thread that sleeps a very short time (1 minute) and each time checks if enough time has passed since the last execution. This is much more robust and lets you track if your system is ‘still alive’

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows service that fails to start under some circumstances. When it
I have a windows service that is heavily multithreaded. Each thread calls various methods
I have a windows service that has a custom configuration section. In the configSectionHandler
I have a windows service that generates logs as it does some execution. I
I have a Windows service that I'd like to gather some debugging data on
I have created an windows service. I want to open some windows based application
So I have a C# windows service that on some systems where there is
I have a windows service that runs various system monitoring operations. However, when running
I have a windows service that runs fine, but I have to have it
I have a Windows service that runs implementations of a framework across multiple threads.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.