Aggregate script execution times by linksets rather than individual prims.

This is for the top scripts report.
This commit is contained in:
Justin Clark-Casey (justincc)
2012-03-16 01:31:53 +00:00
parent 7df4a544fe
commit c386b68373
4 changed files with 23 additions and 4 deletions

View File

@@ -79,7 +79,10 @@ namespace OpenSim.Region.Framework.Interfaces
/// <summary>
/// Get the execution times of all scripts in each object.
/// </summary>
/// <returns>A dictionary where the key is a local object ID and the value is an execution time in milliseconds.</returns>
/// <returns>
/// A dictionary where the key is the root object ID of a linkset
/// and the value is a representative execution time in milliseconds of all scripts in that linkset.
/// </returns>
Dictionary<uint, float> GetObjectScriptsExecutionTimes();
}
}