IMsoComponent::FDoIdle Method

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Enables the component to do idle-time tasks.

BOOL FDoIdle(
   DWORD grfidlef
);

Parameters

  • grfidlef [in]
    The type of idle-time tasks to perform. The type of tasks are specified by a combination of the values from the following table.

    Value

    Description

    msoidlefPeriodic = 1

    Specifies to perform periodic idle-time tasks.

    msoidlefNonPeriodic = 2

    Specifies to perform any nonperiodic idle-time tasks.

    msoidlefPriority = 4

    Specifies to perform high priority, nonperiodic idle-time tasks.

    msoidlefAll = 0xFFFFFFFF

    Specifies to perform all idle-time tasks.

Return Value

TRUE to indicate that more time is needed to perform the idle-time tasks; otherwise, FALSE.

Remarks

The component may periodically call the IMsoComponentManager::FContinueIdle method. If the FContinueIdle method returns FALSE, the component should terminate its idle-time processing and return.

If a component reaches a point where it has no idle-time tasks and does not need IMsoComponent::FDoIdle method calls, it should remove its idle task registration by calling the IMsoComponentManager::FUpdateComponentRegistration method.

If this method is called while the component is performing a tracking operation, the component should perform only idle-time tasks that are appropriate to perform during tracking.

See Also

Reference

IMsoComponent Interface