Visual Studio Team System
Do not use timers that prevent power state changes

TypeName

DoNotUseTimersThatPreventPowerStateChanges

CheckId

CA1601

Category

Microsoft.Mobility

Breaking Change

Breaking

Cause

A timer has an interval set to occur more than once per second.

Rule Description

Do not poll more often than once per second or use timers that occur more frequently than once per second. Higher frequency periodic activity will keep the CPU busy and interfere with power-saving idle timers that turn off the display and hard disks.

How to Fix Violations

Set timer intervals to occur less than once per second.

When to Exclude Warnings

This rule should be excluded only if firing the timer more than once per second is required and mobility considerations can safely be ignored.

Tags :


Community Content

somos
I don't see the point of this rule

If you set a Timer with a rate of 100msec that does nothing the CPU usage will be much lower than setting a Timer with a rate of 10sec that does a task that needs 9,90 seconds to execute.

In the same way a Timer maybe is only started a small amount of time and there is no problem then to have it with a rate of 1 msec.

Tags :

Page view tracker