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

  • Home
  • SEARCH
  • 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 4626648
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T03:27:05+00:00 2026-05-22T03:27:05+00:00

static readonly System.Timers.Timer _timer = new System.Timers.Timer(); static void Main(string[] args) { _timer.Interval =

  • 0
static readonly System.Timers.Timer _timer = new System.Timers.Timer();

static void Main(string[] args)
{
    _timer.Interval = 1000;
    _timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer_Elapsed);
    _timer.Start();

    Console.WriteLine("Press any key to exit...");
    Console.ReadKey();
}

static void Timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
    Console.WriteLine(DateTime.Now);
    Thread.Sleep(600000); // 10 minutes
    Console.WriteLine(DateTime.Now);
}

What happens to the timer thread with such a long sleep? Does it get back to thread pool or we end up many sleeping threads?

  • 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-22T03:27:06+00:00Added an answer on May 22, 2026 at 3:27 am

    The sleeping threads will return to the thread pool, but only after the sleep ends. A thread pool has a maximum number of threads, that means you could run out of threads to use, because all of them will be sleeping.

    EDIT:

    ThreadPool docs:

    http://msdn.microsoft.com/en-us/library/system.threading.threadpool.getmaxthreads.aspx

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

Sidebar

Related Questions

static void Main(string[] args) { //read in the file StreamReader convert = new StreamReader(../../convert.txt);
static Mutex mutex = new Mutex (false, oreilly.com OneAtATimeDemo); static void Main() { //
static void Main() { string str; str = Console.ReadLine(); while (str != null)//HERE! {
I stumbled upon this code: static void Main() { typeof(string).GetField(Empty).SetValue(null, evil);//from DailyWTF Console.WriteLine(String.Empty);//check //how
I have a singleton that uses the static readonly T Instance = new T();
I have the following in a C# class: public static readonly SortedDictionary<string, string> Fields
How do you convert the following C# code to VB.NET? private static readonly ICollection<string>
I have an issue with the System.Timers.Timer object. I use the timer object to
So I have the following: public class Singleton { private Singleton(){} public static readonly
In a static C# method, I do var brush = new LinearGradientBrush(_snazzyGradient); , and

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.