WoW:API GetAddOnCPUUsage: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(→‎Returns: time is returned in seconds, not milliseconds)
(Undo revision 1618596 by Bdkmpss (talk))
Line 17: Line 17:
== Returns ==
== Returns ==


:;time : Number - The total time used by the specified AddOn, in seconds.
:;time : Number - The total time used by the specified AddOn, in milliseconds.
 


== Details ==
== Details ==
: The function returns a cached value calculated by UpdateAddOnCPUUsage(). The time is the sum of GetFunctionCPUUsage(f, false) for all functions f created on behalf of the AddOn. These functions include both functions created directly by the AddOn itself, as well as functions created by external functions that where called by the AddOn. That means even though an external function does not belong to an AddOn, functions created by that external function are attributed to the calling AddOn.
: The function returns a cached value calculated by UpdateAddOnCPUUsage(). The time is the sum of GetFunctionCPUUsage(f, false) for all functions f created on behalf of the AddOn. These functions include both functions created directly by the AddOn itself, as well as functions created by external functions that where called by the AddOn. That means even though an external function does not belong to an AddOn, functions created by that external function are attributed to the calling AddOn.

Revision as of 12:52, 1 October 2008

WoW API < GetAddOnCPUUsage

Returns the total time used by the specified AddOn.

time = GetAddOnCPUUsage(index|"name")


Arguments

(index|"name")
index
Number - Numeric AddOn index
"name"
String - AddOn name


Returns

time
Number - The total time used by the specified AddOn, in milliseconds.


Details

The function returns a cached value calculated by UpdateAddOnCPUUsage(). The time is the sum of GetFunctionCPUUsage(f, false) for all functions f created on behalf of the AddOn. These functions include both functions created directly by the AddOn itself, as well as functions created by external functions that where called by the AddOn. That means even though an external function does not belong to an AddOn, functions created by that external function are attributed to the calling AddOn.