diff options
author | UbitUmarov | 2018-01-13 14:40:31 +0000 |
---|---|---|
committer | UbitUmarov | 2018-01-13 14:40:31 +0000 |
commit | d3ff4e080637cb76e60713954aa84161d28ef750 (patch) | |
tree | e283f78d54d5e95dfbc0c2e8c55114f847d9d95d /OpenSim/Region/OptionalModules | |
parent | remove unused dll - XMLRPC is used not this (diff) | |
download | opensim-SC-d3ff4e080637cb76e60713954aa84161d28ef750.zip opensim-SC-d3ff4e080637cb76e60713954aa84161d28ef750.tar.gz opensim-SC-d3ff4e080637cb76e60713954aa84161d28ef750.tar.bz2 opensim-SC-d3ff4e080637cb76e60713954aa84161d28ef750.tar.xz |
clean some modules api
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModule.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModule.cs b/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModule.cs index a14d819..64513a0 100644 --- a/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModule.cs +++ b/OpenSim/Region/OptionalModules/World/AutoBackup/AutoBackupModule.cs | |||
@@ -127,7 +127,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
127 | /// <summary> | 127 | /// <summary> |
128 | /// Identifies the module to the system. | 128 | /// Identifies the module to the system. |
129 | /// </summary> | 129 | /// </summary> |
130 | string IRegionModuleBase.Name | 130 | public string Name |
131 | { | 131 | { |
132 | get { return "AutoBackupModule"; } | 132 | get { return "AutoBackupModule"; } |
133 | } | 133 | } |
@@ -135,7 +135,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
135 | /// <summary> | 135 | /// <summary> |
136 | /// We don't implement an interface, this is a single-use module. | 136 | /// We don't implement an interface, this is a single-use module. |
137 | /// </summary> | 137 | /// </summary> |
138 | Type IRegionModuleBase.ReplaceableInterface | 138 | public Type ReplaceableInterface |
139 | { | 139 | { |
140 | get { return null; } | 140 | get { return null; } |
141 | } | 141 | } |
@@ -144,7 +144,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
144 | /// Called once in the lifetime of the module at startup. | 144 | /// Called once in the lifetime of the module at startup. |
145 | /// </summary> | 145 | /// </summary> |
146 | /// <param name="source">The input config source for OpenSim.ini.</param> | 146 | /// <param name="source">The input config source for OpenSim.ini.</param> |
147 | void IRegionModuleBase.Initialise(IConfigSource source) | 147 | public void Initialise(IConfigSource source) |
148 | { | 148 | { |
149 | // Determine if we have been enabled at all in OpenSim.ini -- this is part and parcel of being an optional module | 149 | // Determine if we have been enabled at all in OpenSim.ini -- this is part and parcel of being an optional module |
150 | m_configSource = source; | 150 | m_configSource = source; |
@@ -184,7 +184,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
184 | /// <summary> | 184 | /// <summary> |
185 | /// Called once at de-init (sim shutting down). | 185 | /// Called once at de-init (sim shutting down). |
186 | /// </summary> | 186 | /// </summary> |
187 | void IRegionModuleBase.Close() | 187 | public void Close() |
188 | { | 188 | { |
189 | if (!m_enabled) | 189 | if (!m_enabled) |
190 | return; | 190 | return; |
@@ -197,7 +197,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
197 | /// Currently a no-op for AutoBackup because we have to wait for region to be fully loaded. | 197 | /// Currently a no-op for AutoBackup because we have to wait for region to be fully loaded. |
198 | /// </summary> | 198 | /// </summary> |
199 | /// <param name="scene"></param> | 199 | /// <param name="scene"></param> |
200 | void IRegionModuleBase.AddRegion (Scene scene) | 200 | public void AddRegion (Scene scene) |
201 | { | 201 | { |
202 | if (!m_enabled) | 202 | if (!m_enabled) |
203 | return; | 203 | return; |
@@ -210,7 +210,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
210 | /// Here we just clean up some resources and stop the OAR backup (if any) for the given scene. | 210 | /// Here we just clean up some resources and stop the OAR backup (if any) for the given scene. |
211 | /// </summary> | 211 | /// </summary> |
212 | /// <param name="scene">The scene (region) to stop performing AutoBackup on.</param> | 212 | /// <param name="scene">The scene (region) to stop performing AutoBackup on.</param> |
213 | void IRegionModuleBase.RemoveRegion(Scene scene) | 213 | public void RemoveRegion(Scene scene) |
214 | { | 214 | { |
215 | if (m_enabled) | 215 | if (m_enabled) |
216 | return; | 216 | return; |
@@ -228,7 +228,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
228 | /// We read lots of Nini config, maybe set a timer, add members to state tracking Dictionaries, etc. | 228 | /// We read lots of Nini config, maybe set a timer, add members to state tracking Dictionaries, etc. |
229 | /// </summary> | 229 | /// </summary> |
230 | /// <param name="scene">The scene to (possibly) perform AutoBackup on.</param> | 230 | /// <param name="scene">The scene to (possibly) perform AutoBackup on.</param> |
231 | void IRegionModuleBase.RegionLoaded(Scene scene) | 231 | public void RegionLoaded(Scene scene) |
232 | { | 232 | { |
233 | if (!m_enabled) | 233 | if (!m_enabled) |
234 | return; | 234 | return; |
@@ -258,7 +258,7 @@ namespace OpenSim.Region.OptionalModules.World.AutoBackup | |||
258 | /// <summary> | 258 | /// <summary> |
259 | /// Currently a no-op. | 259 | /// Currently a no-op. |
260 | /// </summary> | 260 | /// </summary> |
261 | void ISharedRegionModule.PostInitialise() | 261 | public void PostInitialise() |
262 | { | 262 | { |
263 | } | 263 | } |
264 | 264 | ||