vote up 3 vote down star
1

I want to wait for 15 seconds , then the control should resume from the next statement.

I don't have anything else to do while waiting (Just waiting).

I know that there is Thread.Sleep(15000). What I dont know is the best method to wait? What are the limitations of this?

code would be like this.

Method()
{
   stmt 1;
   stmt 2;
   //WaitFor 15 sec here;
   stmt 3;
}

Thanks,

flag

67% accept rate
Thread.Sleep(15000) is fine for C#. For WinForms, WPF or ASP.NET it is a disaster. – Henk Holterman Aug 24 at 7:31
Near-duplicates: stackoverflow.com/questions/1091710, stackoverflow.com/questions/407130, stackoverflow.com/questions/1208103 and stackoverflow.com/questions/903688. – Peter Mortensen Aug 24 at 7:54

8 Answers

vote up 1 vote down check

Try something like the following:

void Method()
{
    stmt1;
    stmt2;

    new System.Threading.Timer(
        o =>   // timer callback
        {
            stmt3;
        },
        15000, // Delay
        0      // Repeat-interval; 0 for no repeat
    );
}

Syntax is C# 3.0, uses a lambda expression to effectively create a closure around statement #3. With this, you could use any local variables of Method. A thing to note, however, is that with this method, or any other timer-based method...the function will return immediately after creating the timer. The function won't block until the Timer executes. To achieve that, the only thing I can think of is to actually use threads and make Method() block on a signal (i.e. WaitHandle, ResetEvent, etc.) until the timed call on the other thread completes.

link|flag
2  
There's a problem with this example. It won't work reliably, since no reference to the Timer object is kept anywhere. Thus, it is subject to garbage collection. The longer your delay, the more likely this will be a problem. From MSDN: As long as you are using a Timer, you must keep a reference to it. As with any managed object, a Timer is subject to garbage collection when there are no references to it. The fact that a Timer is still active does not prevent it from being collected. – Thorarin Aug 24 at 11:18
@Thorarin: Ah, good point. I forgot all about that little fact. I'll see if I can correct the example. – jrista Aug 25 at 1:30
vote up 0 vote down

I don't sure 100%, but if you really need your method to return after waiting 15 sec, try following:


Method()
{
   stmt1();
   stmt2();

   int time = DateTime.Now.Millisecond;
   while (15*1000 > DateTime.Now.Millisecond - time)
   {
       Thread.Sleep(10)
       Application.DoEvents();
   }
   stmt3();
}

link|flag
vote up 0 vote down

This depends on the problem. If you are simply waiting to check is a process has completed, using Sleep is a very bad solution. In this case I would use the BackgroundWorker.

System.ComponentModel.BackgroundWorker bg = new System.ComponentModel.BackgroundWorker();

This allows you to run the code on a separate thread, and you can check the status of the operation every x seconds (using a Timer) by checking the following property:

bg.IsBusy

This will allow a much more contained solution to checking if your code has run and completed, without freezing up your entire application and particularly your UI thread.

Alternatively, if you are simply waiting 15 seconds, you could use Thread.Sleep but you do run the risk of untimely responses in your application, or if it's user facing, a very frustrated user.

BackgroundWorker MSDN

Hope this helps,

Kyle

link|flag
vote up 0 vote down

If you always want to wait for a given time, then Sleep is useful. Obviously you shouldn't do this on a thread where timely responses are expected.

Keep in mind that your thread will sleep for the duration in all cases. If for some reason you want the thread to resume sooner, you're better off using signaling or callbacks. By using either of these instead of Sleep, you will minimize the needless wait time.

link|flag
vote up 6 vote down

This may not be a direct answer to your question. I would say check whether your process flow is better than checking whether the code is better ;-)

Are you waiting for 15 seconds just to make sure stmt2; is complete? If so then adding an handler, as soon as stmnt 2 is executed, would be a better solution (?)

You can also use a timer to wait. Thread.sleep is a bad design. We have a similar question which talks about the comparison using Thread.sleep and Timer.

link|flag
vote up 9 vote down

The disadvantage of Thread.Sleep is if this is called in your GUI thread (the thread that processes GUI events, for example, a button click handler method, or a method called from a button click handler, etc.) then you application will appear to freeze and be nonresponsive for those 15 seconds.

It would be perfectly fine if you had explicetly created a seperate thread and called Thread.Sleep in it, assuming you don't mind that thread not doing anything for 15 seconds.

The alternative would be to create a Timer and start it after stmt 2, and place stmt 3 in the Tick event handler for the timer, and also stop the timer in that handler.

link|flag
vote up 2 vote down

Thread.sleep seems a sensible thing to do if there isn't anything else to do while waiting. It puts the thread to sleep for that time so it doesn't use any CPU resources.

link|flag
Yes, any other methods would use CPU, and you don't want that if all you need to do is wait... – awe Aug 24 at 7:19
It's particularly useful in Unit tests where you need to simulate time delta. The method can't exit so Thread.Sleep() is less evil in this particular situation. For long time intervals I have faked this by altering the system time. Kind of like putting the computer into a time machine. When the test is done it sets the system time back to normal. – Gareth Farrington Nov 2 at 16:05
vote up 1 vote down

You could always use a timer and then execute code after the set duration. However, if you don't actually have to do anything and just want to wait at a particular point in code, then I think Thread.Sleep(150000); is sufficient. [Edit: spelling]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.