Share via


ISpTask (Windows CE 5.0)

Send Feedback

This interface is a C++ pure virtual interface, and not a COM interface. It is used by objects that want to perform atomic operations that are optimized for a multiprocessor computer. The ISpTaskManager can be used to create task objects that support the ISpNotifySink interface. When the Notify is called on these objects, a thread will be allocated from a thread pool, and the ISpTask::Execute method will be called on that thread. The client code then performs whatever operation it wishes on that thread and returns from the Execute method when done. Applications should avoid blocking on I/O operations because they are consuming a thread from the shared thread pool.

When to Implement

ISpTask is most useful with multiprocessor computers. ISpTask allocates tasks efficiently based on the current availability of microprocessor time. Implement ISpTask on objects that perform tasks that can be broken into smaller tasks.

Methods

The following table lists the methods for the ISpTask interface in Vtable Order.

Methods Description
Execute Calls on a worker thread to allow the client to perform necessary task operations.

Requirements

OS Versions: Windows CE .NET 4.1 and later.
Header: sapiddk.h, sapiddk.idl.
Link Library: Sapilib.lib.

See Also

SAPI Interfaces

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.