Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
This class creates a worker thread or uses an existing one, waits on one or more kernel object handles, and executes a specified client function when one of the handles is signaled.
Important
This class and its members cannot be used in applications that execute in the Windows Runtime.
template <
class ThreadTraits= DefaultThreadTraits
>
class CWorkerThread
Parameters
- ThreadTraits
The class providing the thread creation function, such as CRTThreadTraits or Win32ThreadTraits.
Members
Protected Structures
Name |
Description |
|---|---|
WorkerClientEntry |
Public Constructors
Name |
Description |
|---|---|
The constructor for the worker thread. |
|
The destructor for the worker thread. |
Public Methods
Name |
Description |
|---|---|
Call this method to add a waitable object's handle to the list maintained by the worker thread. |
|
Call this method to add a periodic waitable timer to the list maintained by the worker thread. |
|
Call this method to get the thread handle of the worker thread. |
|
Call this method to get the thread ID of the worker thread. |
|
Call this method to initialize the worker thread. |
|
Call this method to remove a handle from the list of waitable objects. |
|
Call this method to shut down the worker thread. |
Remarks
To use CWorkerThread
Create an instance of this class.
Call CWorkerThread::AddHandle with the handle of a kernel object and a pointer to an implementation of IWorkerThreadClient.
– or –
Call CWorkerThread::AddTimer with a pointer to an implementation of IWorkerThreadClient.
Implement IWorkerThreadClient::Execute to take some action when the handle or timer is signaled.
To remove an object from the list of waitable objects, call CWorkerThread::RemoveHandle.
To terminate the thread, call CWorkerThread::Shutdown.
Requirements
Header: atlutil.h
See Also
Reference
Concepts
Multithreading: Creating Worker Threads