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

@@ -99,6 +99,17 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
string ScriptName { get; }
UUID ItemID { get; }
UUID ObjectID { get; }
/// <summary>
/// UUID of the root object for the linkset that the script is in.
/// </summary>
UUID RootObjectID { get; }
/// <summary>
/// Local id of the root object for the linkset that the script is in.
/// </summary>
uint RootLocalID { get; }
uint LocalID { get; }
UUID AssetID { get; }
Queue EventQueue { get; }