aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-03-26 00:43:17 +0000
committerJustin Clark-Casey (justincc)2014-03-26 00:43:17 +0000
commit99308d64c6e0685f2862f39ca8f5e9e924cb77e6 (patch)
tree6253cdacc053fe7f79165fd21249f6952f1e31cf /OpenSim/Region/Framework/Scenes/Scene.cs
parentUse the "X-Content-Encoding" header to indicate gzipped data, because old Ope... (diff)
downloadopensim-SC_OLD-99308d64c6e0685f2862f39ca8f5e9e924cb77e6.zip
opensim-SC_OLD-99308d64c6e0685f2862f39ca8f5e9e924cb77e6.tar.gz
opensim-SC_OLD-99308d64c6e0685f2862f39ca8f5e9e924cb77e6.tar.bz2
opensim-SC_OLD-99308d64c6e0685f2862f39ca8f5e9e924cb77e6.tar.xz
minor: Add some doc to Scene.Backup() detailing its direct invocation if the indepedent backup thread is not running (e.g. in a regression test)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 726d8e2..19d4e84 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1703,8 +1703,12 @@ namespace OpenSim.Region.Framework.Scenes
1703 } 1703 }
1704 1704
1705 /// <summary> 1705 /// <summary>
1706 /// Backup the scene. This acts as the main method of the backup thread. 1706 /// Backup the scene.
1707 /// </summary> 1707 /// </summary>
1708 /// <remarks>
1709 /// This acts as the main method of the backup thread. In a regression test whether the backup thread is not
1710 /// running independently this can be invoked directly.
1711 /// </remarks>
1708 /// <param name="forced"> 1712 /// <param name="forced">
1709 /// If true, then any changes that have not yet been persisted are persisted. If false, 1713 /// If true, then any changes that have not yet been persisted are persisted. If false,
1710 /// then the persistence decision is left to the backup code (in some situations, such as object persistence, 1714 /// then the persistence decision is left to the backup code (in some situations, such as object persistence,