473,498 Members | 1,785 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Thread.Sleep

According to the docs, calling Thread.Sleep(0) causes the thread to be
"suspended to allow other waiting threads to execute."

What happens if I call Thread.Sleep(500)? Do other threads not get a
chance to execute during this time? What is the difference between the
two?

I have code that runs in a loop like this:

Dim dResetTime As DateTime = DateTime.Now
Do
If DateTime.Now >= dResetTime Then
DoWork()
dResetTime = dResetTime.AddSeconds(iNumSeconds)
End If
Threading.Thread.Sleep(500)
Loop Until bStopRequest

Would I be better off using Threading.Thread.Sleep(0) in this instance?
How would this affect CPU load? I want the DoWork method to run with
an interval of iNumSeconds but I want to be able to stop the loop by
setting the bStopRequest to True.

Is this an appropriate to handle this? I don't want the loop to tax
the CPU.

Thanks for any insight or suggestions.

Chris

Nov 21 '05 #1
9 3466
AFAIK, the difference is that the Thread.Sleep(0) will start when its turn
to execute comes around again, where the Thread.Sleep(500) will execute when
500 ms has passed and its turn comes around to execute again. Basically the
500 makes sure the thread waits at least 500 ms while the 0 says, someone
else just take a turn.

If you want DoWork to run every X seconds, you might want to do something
like:

Do
DoWork
thread.sleep(X)
Loop Until bStopRequest

This way the thread will sleep for X seconds then start DoWork again. Now
the UI will not be responsive while the thread is sleeping. If you need a
UI, you may want to look at a Timer instead. It would be a better solution.

If you want to make sure your processor isn't super taxed during the
execution of DoWork, you need to do one of two things. Either do an
Application.Doevents inside of DoWork, or run DoWork inside of a seperate
thread.

Chris

"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
According to the docs, calling Thread.Sleep(0) causes the thread to be
"suspended to allow other waiting threads to execute."

What happens if I call Thread.Sleep(500)? Do other threads not get a
chance to execute during this time? What is the difference between the
two?

I have code that runs in a loop like this:

Dim dResetTime As DateTime = DateTime.Now
Do
If DateTime.Now >= dResetTime Then
DoWork()
dResetTime = dResetTime.AddSeconds(iNumSeconds)
End If
Threading.Thread.Sleep(500)
Loop Until bStopRequest

Would I be better off using Threading.Thread.Sleep(0) in this instance?
How would this affect CPU load? I want the DoWork method to run with
an interval of iNumSeconds but I want to be able to stop the loop by
setting the bStopRequest to True.

Is this an appropriate to handle this? I don't want the loop to tax
the CPU.

Thanks for any insight or suggestions.

Chris

Nov 21 '05 #2
Thanks for the response,
If you want DoWork to run every X seconds, you might want to do something like:

Do
DoWork
thread.sleep(X)
Loop Until bStopRequest


I started with this, but if X is a large interval, such as a minute or
two, then the thread will be blocked and the bStopRequest will only be
tested when it unblocks. I want it to remain responsive so that if the
bStopRequest is set to True, then it will stop and not have to wait
until the interval expires.

Chris

Nov 21 '05 #3
Use a Timer then. This fires off an event every Timer.Interval
milli-seconds. This will allow your form to be responsive.

Chris

"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
Thanks for the response,
If you want DoWork to run every X seconds, you might want to do

something
like:

Do
DoWork
thread.sleep(X)
Loop Until bStopRequest


I started with this, but if X is a large interval, such as a minute or
two, then the thread will be blocked and the bStopRequest will only be
tested when it unblocks. I want it to remain responsive so that if the
bStopRequest is set to True, then it will stop and not have to wait
until the interval expires.

Chris

Nov 21 '05 #4
Chris,
What happens if I call Thread.Sleep(500)? Causes your thread to wait about 500 milliseconds before it resumes.
What is the difference between the
two? Thread.Sleep(0) gives up your current "time slice", if at the next time
slice you are the highest priority thread, you will regain control of the
CPU. A time slice is normally a fraction of a second, I believe it may even
be a fraction of a millisecond... Unfortunately I don't have a reference
handy on how long a time slice normally is...

Windows will automatically dynamically raise & lower priorities so threads
are not denied any time slices.

I normally use Sleep(0), unless I don't want to starve any UI threads...

Hope this helps
Jay

"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com... According to the docs, calling Thread.Sleep(0) causes the thread to be
"suspended to allow other waiting threads to execute."

What happens if I call Thread.Sleep(500)? Do other threads not get a
chance to execute during this time? What is the difference between the
two?

I have code that runs in a loop like this:

Dim dResetTime As DateTime = DateTime.Now
Do
If DateTime.Now >= dResetTime Then
DoWork()
dResetTime = dResetTime.AddSeconds(iNumSeconds)
End If
Threading.Thread.Sleep(500)
Loop Until bStopRequest

Would I be better off using Threading.Thread.Sleep(0) in this instance?
How would this affect CPU load? I want the DoWork method to run with
an interval of iNumSeconds but I want to be able to stop the loop by
setting the bStopRequest to True.

Is this an appropriate to handle this? I don't want the loop to tax
the CPU.

Thanks for any insight or suggestions.

Chris

Nov 21 '05 #5
Chris,
Rather then use a Boolean & Thread.Sleep, consider using a ManualResetEvent.

Something like:

Dim bStopRequest As New ManualResetEvent(False)

Do
DoWork()
Loop Until bStopRequest.WaitOne(x, False)

When another thread wants to stop the thread "Set" bStopRequest, like:

bStopRequest.Set()

If bStopRequest is Set, then WaitOne will return True immediately, if
bStopRequest stays Reset (is not Set), then WaitOne will wait the full time
interval before returning False.

Hope this helps
Jay
"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
Thanks for the response,
If you want DoWork to run every X seconds, you might want to do

something
like:

Do
DoWork
thread.sleep(X)
Loop Until bStopRequest


I started with this, but if X is a large interval, such as a minute or
two, then the thread will be blocked and the bStopRequest will only be
tested when it unblocks. I want it to remain responsive so that if the
bStopRequest is set to True, then it will stop and not have to wait
until the interval expires.

Chris

Nov 21 '05 #6
Thanks Jay,

I had recently used a ManualResetEvent elsewhere and it did not occur
to me to use it in this case. I think it will work nicely.

Chris

Nov 21 '05 #7
Chris,

As I understand you well, do I in this situation raise an public event in
the worker thread when it is ready and catch that in the mainthread.

When a thread is doing nothing than it is not needed to stop it.

I hope this helps?

Cor
Nov 21 '05 #8
Jay, can you explain what the second argument to WaitOne means, the
docs are not clear to me.

In what situation would I ever use True on the WaitOne method?

Thanks again

Nov 21 '05 #9
Chris,
Unfortunately other then those docs I have not come across it, I normally
use False, as that is what WaitOne() (no parameters) uses. I've seem many an
example that uses True, however the ones I've checked do not include a
reason.

Hope this helps
Jay

"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Jay, can you explain what the second argument to WaitOne means, the
docs are not clear to me.

In what situation would I ever use True on the WaitOne method?

Thanks again

Nov 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

38
2836
by: Anthony Baxter | last post by:
On behalf of the Python development team and the Python community, I'm happy to announce the release of Python 2.3.1 (final). Python 2.3.1 is a pure bug fix release of Python 2.3, released in...
26
2345
by: news.microsoft.com | last post by:
Hi, Currently I have a thread thats spinning and doing a Thread.Sleep(someTime). I was thinking of changing this to Thread.Sleep(Timeout.Infinite); then when I have actual data in a...
8
2762
by: Cider123 | last post by:
I ran into a situation where my Window Service had to process 100,000+ files, when I first noticed I needed to tweak various routines. Everything runs fine, but here's what I ran into: In the...
4
5414
by: Matthew Groch | last post by:
Hi all, I've got a server that handles a relatively high number of concurrent transactions (on the magnitude of 1000's per second). Client applications establish socket connections with the...
1
5205
by: Matthijs | last post by:
Hi, I have a problem coding a UDP Server/client. The server needs to send big amounts of data over UDP. The problem however is that you can't send as fast as you like. (All packets will be dropped...
6
2795
by: k.mellor | last post by:
Hi, I hope someone can help. I have written a simple form to demonstrate my problem/question. The code follows. The form starts a thread, which using delegates updates a label (Every second...
0
2664
by: Buckaroo Banzai | last post by:
Hello, newbie here... I'm writing this program but when I click the start button which should initiate either the Hare or the Tortoise, it does not, this is the first time I use threads, so the...
9
6948
by: =?Utf-8?B?anAybXNmdA==?= | last post by:
I've got a routine that builds a table using different queries, different SQL Tables, and adding custom fields. It takes a while to run (20 - 45 seconds) so I wrote a thread to handle the table...
2
3329
by: Steve | last post by:
Hi All, I've been trying to come up with a good way to run a certain process at a timed interval (say every 5 mins) using the SLEEP command and a semaphore flag. The basic thread loop was always...
0
6993
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7197
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6881
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7375
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4584
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3078
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1411
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
650
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.