diff options
author | Oren Hurvitz | 2011-09-05 12:45:02 +0300 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-09-09 23:01:05 +0100 |
commit | 1dd904b78e723af8cb4340415a8f41dcd1054541 (patch) | |
tree | da8d4addb498e4207bd7c4e17b836e8759673107 /OpenSim/Region/Framework/Interfaces | |
parent | Added a check to the CreateRegion method of the RemoteAdmin module that the s... (diff) | |
download | opensim-SC_OLD-1dd904b78e723af8cb4340415a8f41dcd1054541.zip opensim-SC_OLD-1dd904b78e723af8cb4340415a8f41dcd1054541.tar.gz opensim-SC_OLD-1dd904b78e723af8cb4340415a8f41dcd1054541.tar.bz2 opensim-SC_OLD-1dd904b78e723af8cb4340415a8f41dcd1054541.tar.xz |
Delay loading scripts until the scene has finished loading
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScriptModule.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs index d9752e6..b27b7da 100644 --- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs | |||
@@ -52,5 +52,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
52 | ArrayList GetScriptErrors(UUID itemID); | 52 | ArrayList GetScriptErrors(UUID itemID); |
53 | 53 | ||
54 | void SaveAllState(); | 54 | void SaveAllState(); |
55 | |||
56 | /// <summary> | ||
57 | /// Starts the processing threads. | ||
58 | /// </summary> | ||
59 | void StartProcessing(); | ||
55 | } | 60 | } |
56 | } | 61 | } |