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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T08:03:51+00:00 2026-05-29T08:03:51+00:00

From MSDN If there are no waiting threads, the wait handle remains signaled until

  • 0

From MSDN “If there are no waiting threads, the wait handle remains signaled until a thread attempts to wait on it, or until its Reset method is called.”

EventWaitHandle MyWaitHandle = new AutoResetEvent(false);

Thread # 1:

public void Method1()
{
  //do something
  //wait for the signal or timeout
  MyWaitHandle.WaitOne(10000);
  //do something else on receiving signal or after timeout
}

Thread # 2:

//this would be called when there is a response from the external app
public void Method2()
{
  //do something
  //send the signal to waiting thread
  MyWaitHandle.Set();
}

In my application Thread # 1 is submitting a request to external app and waiting for a signal or timeout. If a response is received from the external app Thread # 2 sets the wait handle. This set can be called even after the timeout. My questions are

1) It is highly possible that Method2 can be called after the timeout resulting in setting the signal. Does that mean whenever there is a request to Thread # 1 in the future, the WaitOne(10000) has no effect and will be released immediately?

2) Is there anyway for me to not call set in Method2 in case of timeout? Would that cause any problems to the Thread # 1?

  • 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-29T08:03:52+00:00Added an answer on May 29, 2026 at 8:03 am

    Why not just make sure the wait handle is always reset before waiting on it?

    public void Method1()
    {
      // Reset the wait handle I'll be using...
      MyWaitHandle.Reset();
    
      //do something
      //wait for the signal or timeout
      MyWaitHandle.WaitOne(10000);
      //do something else on receiving signal or after timeout
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an easy way to produce MSDN-style documentation from the Visual Studio XML
From MSDN: The CancelWaitableTimer function does not change the signaled state of the timer.
Why in this example from MSDN, in GetEnumerator method, PeopleEnum returns IEnumerator ? public
is there any page from MSDN or somewhere can tell us, what kind of
According to the GetMessage API from MSDN Library, it might returns -1 when there
From MSDN document i understand ( I am not sure,i understand perfectly ) :
From MSDN Types that implement IComparable must override Equals.Types that override Equals must also
From MSDN ( link ): The type PrintDocumentImageableArea has no public constructor. Hence, the
Here is code from MSDN . I don't understand why the work isn't just
the following code is from MSDN: Idisposable pattern protected virtual void Dispose(bool disposing) {

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.