Re: Intermittent work in UI thread
- From: "David Ching" <dc@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 15 Oct 2007 18:38:51 -0700
"Pedro Ferreira" <none@xxxxxxxx> wrote in message
news:eM5xAr1DIHA.2004@xxxxxxxxxxxxxxxxxxxxxxx
Hi,
I'm trying to create a UI thread to do constant background work, but I'm
having some design problems.
The thread needs to fetch records from a database. do some processing on
each record and, when there are no more records, sleep for 1 minute before
check the database again. The process will be controlled with thread
messages (to start, pause, query...).
My problem is where should I put the processing work. I need it to be
responsive between cycles, where the process waits for 1 minute, so I can
stop it in that period. My only idea is using OnIdle to do the work. But
then, how should I make it real idle when waiting for 1 minute?
I would create a worker thread (not a UI thread) unless you need a UI thread
for some specific purpose not apparent in this description. The worker
thread would do it's work and then do a WaitForSingleObject() with a timeout
of 1 minute (60000 ms), which causes WaitForSingleObject() to return when
either the main thread sets an event for starting, pausing, querying, etc.
or the 1 minute has elapsed. If you need separate events each for starting,
pausing, querying, etc. use WaitForMultipleObjects() instead of
WaitForSingleObject().
-- David
.
- Follow-Ups:
- Re: Intermittent work in UI thread
- From: Almond
- Re: Intermittent work in UI thread
- From: Joseph M . Newcomer
- Re: Intermittent work in UI thread
- References:
- Intermittent work in UI thread
- From: Pedro Ferreira
- Intermittent work in UI thread
- Prev by Date: Re: Serializing a Bitmap File ???
- Next by Date: Re: Intermittent work in UI thread
- Previous by thread: Re: Intermittent work in UI thread
- Next by thread: Re: Intermittent work in UI thread
- Index(es):
Relevant Pages
|
Loading