diff options
author | Sean McNamara | 2011-05-02 02:20:50 -0400 |
---|---|---|
committer | Sean McNamara | 2011-05-02 02:20:50 -0400 |
commit | 2aab033aaa41f2ebef96e725b76e0153a673b448 (patch) | |
tree | f976529f9192bb7c02e63d7011128e67a5c6a8a2 /OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs | |
parent | Merge git://opensimulator.org/git/opensim (diff) | |
download | opensim-SC-2aab033aaa41f2ebef96e725b76e0153a673b448.zip opensim-SC-2aab033aaa41f2ebef96e725b76e0153a673b448.tar.gz opensim-SC-2aab033aaa41f2ebef96e725b76e0153a673b448.tar.bz2 opensim-SC-2aab033aaa41f2ebef96e725b76e0153a673b448.tar.xz |
First pass at fixing justincc's feedback v2 ( http://opensimulator.org/mantis/view.php?id=5440 )
Fixing everything here (I think) except the per-region config. That's next.
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs | 59 |
1 files changed, 31 insertions, 28 deletions
diff --git a/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs b/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs index 7fecfa4..2db718c 100644 --- a/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs +++ b/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModuleState.cs | |||
@@ -1,30 +1,29 @@ | |||
1 | #pragma warning disable 1587 | 1 | /* |
2 | /// | 2 | * Copyright (c) Contributors, http://opensimulator.org/ |
3 | /// Copyright (c) Contributors, http://opensimulator.org/ | 3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. |
4 | /// See CONTRIBUTORS.TXT for a full list of copyright holders. | 4 | * |
5 | /// | 5 | * Redistribution and use in source and binary forms, with or without |
6 | /// Redistribution and use in source and binary forms, with or without | 6 | * modification, are permitted provided that the following conditions are met: |
7 | /// modification, are permitted provided that the following conditions are met: | 7 | * * Redistributions of source code must retain the above copyright |
8 | /// * Redistributions of source code must retain the above copyright | 8 | * notice, this list of conditions and the following disclaimer. |
9 | /// notice, this list of conditions and the following disclaimer. | 9 | * * Redistributions in binary form must reproduce the above copyright |
10 | /// * Redistributions in binary form must reproduce the above copyright | 10 | * notice, this list of conditions and the following disclaimer in the |
11 | /// notice, this list of conditions and the following disclaimer in the | 11 | * documentation and/or other materials provided with the distribution. |
12 | /// documentation and/or other materials provided with the distribution. | 12 | * * Neither the name of the OpenSimulator Project nor the |
13 | /// * Neither the name of the OpenSimulator Project nor the | 13 | * names of its contributors may be used to endorse or promote products |
14 | /// names of its contributors may be used to endorse or promote products | 14 | * derived from this software without specific prior written permission. |
15 | /// derived from this software without specific prior written permission. | 15 | * |
16 | /// | 16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY |
17 | /// THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | 17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
18 | /// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
19 | /// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY |
20 | /// DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | 20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
21 | /// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
22 | /// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
23 | /// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | /// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
25 | /// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | /// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 | */ |
27 | /// | ||
28 | 27 | ||
29 | using System; | 28 | using System; |
30 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
@@ -32,7 +31,11 @@ using System.Collections.Generic; | |||
32 | 31 | ||
33 | namespace OpenSim.Region.OptionalModules.World.AutoBackup | 32 | namespace OpenSim.Region.OptionalModules.World.AutoBackup |
34 | { | 33 | { |
35 | /// AutoBackupModuleState: Auto-Backup state for one region (scene). | 34 | /// <summary>AutoBackupModuleState: Auto-Backup state for one region (scene). |
35 | /// If you use this class in any way outside of AutoBackupModule, you should treat the class as opaque. | ||
36 | /// Since it is not part of the framework, you really should not rely upon it outside of the AutoBackupModule implementation. | ||
37 | /// </summary> | ||
38 | /// | ||
36 | public class AutoBackupModuleState | 39 | public class AutoBackupModuleState |
37 | { | 40 | { |
38 | private Dictionary<Guid, string> m_liveRequests = null; | 41 | private Dictionary<Guid, string> m_liveRequests = null; |