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 6212519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:31:47+00:00 2026-05-24T06:31:47+00:00

I have three threads: the main thread and two timers. The first timer activates

  • 0

I have three threads: the main thread and two timers. The first timer activates the second one after a period of time and then disables itself.

I use “Thread.Sleep(int)” in order to delay the activation of the second timer. But the whole program pauses when the “Sleep” function is working.

How can I pause a thread without pausing the whole program?

  • 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-24T06:31:49+00:00Added an answer on May 24, 2026 at 6:31 am

    Timers don’t execute your code in new threads. After their interval they raise an event in the Windows Message Queue that the main thread then executes, hence why Thread.Sleep(int) is pausing everything.

    To fix this, you’ll need to actually start your own threads. It’s an easy process:

            Thread t = new Thread(new ThreadStart(() => {
                // Do Something without parameters
            }));
            t.Start();
    

    or

            Thread t = new Thread(new ParameterizedThreadStart((obj) => {
                // Do Something with parameters
            }));
            Object obj = ...;
            t.Start(obj);
    

    There are other parameters you may want to set on a thread before you start it that will affect the rest of your application such as IsBackground

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

Sidebar

Related Questions

In my application I have two threads a main thread which is busy most
I have a simple iPhone game consisting of two threads: the main game loop
I have an object that is called from two different threads and after it
Possible Duplicate: Locking main() thread Below you'll find my code, Main calls two threads,
I have one std::list<> container and these threads: One writer thread which adds elements
Okay, i have this question in one regarding threads. there are two unsynchronized threads
I have three tables of information where the business_id is the common thread. I
In my code I have three classes as follows: Forum , Forum::Thread and Forum::Post
I have a List object being accessed by multiple threads. There is mostly one
I occasionally use a volatile instance variable in cases where I have two 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.