Class PerformanceController

Definition

Namespace:
Tizen.System
Assembly:
Tizen.System.dll
Privilege Level:
public
Privilege:

The PerformanceController class provides the methods to control the system resources.

C#
Copy
public static class PerformanceController : object
Inheritance
PerformanceController
Remarks

It supports to control cpu clock within input timeout.

Methods

View Source

Request(PerformanceControlType, Int32)

Increase the cpu clock within timeout.

Declaration
C#
Copy
public static void Request(PerformanceControlType type, int timeout)
Parameters
Type Name Description
PerformanceControlType type

Performance Control Type

Int32 timeout

Cpu clock increasing duration in milliseconds.

Examples
Copy
try { PerformanceController.Request(PerformanceControlType.AppLaunchHome, 100); } Catch(Exception e) { }