diff options
author | AliciaRaven | 2014-09-13 04:25:31 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-09-23 00:04:59 +0100 |
commit | 1e220911938ef3d16cee0112b81333a60b3e5d52 (patch) | |
tree | 8f7104983c4760c06b721ce4b0211ec4817b7b6e /OpenSim/Region/Framework/Interfaces | |
parent | Add an event callback for loading IAR files. The callback for creating them a... (diff) | |
download | opensim-SC-1e220911938ef3d16cee0112b81333a60b3e5d52.zip opensim-SC-1e220911938ef3d16cee0112b81333a60b3e5d52.tar.gz opensim-SC-1e220911938ef3d16cee0112b81333a60b3e5d52.tar.bz2 opensim-SC-1e220911938ef3d16cee0112b81333a60b3e5d52.tar.xz |
Modifications to previous IAR commits to bring them more inline with existing OpenSim code conventions. Also include new IAR save switch in console help print out.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs index 0795589..37e20c3 100644 --- a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs | |||
@@ -42,10 +42,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
42 | /// <param name="invPath">The inventory path saved</param> | 42 | /// <param name="invPath">The inventory path saved</param> |
43 | /// <param name="savePath">The stream to which the archive was saved</param> | 43 | /// <param name="savePath">The stream to which the archive was saved</param> |
44 | /// <param name="reportedException">Contains the exception generated if the save did not succeed</param> | 44 | /// <param name="reportedException">Contains the exception generated if the save did not succeed</param> |
45 | /// <param name="SaveCount">Number of inventory items saved to archive</param> | 45 | /// <param name="saveCount">Number of inventory items saved to archive</param> |
46 | /// <param name="FilterCount">Number of inventory items skipped due to perm filter option</param> | 46 | /// <param name="filterCount">Number of inventory items skipped due to perm filter option</param> |
47 | public delegate void InventoryArchiveSaved( | 47 | public delegate void InventoryArchiveSaved( |
48 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int SaveCount, int FilterCount); | 48 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int saveCount, int filterCount); |
49 | 49 | ||
50 | /// <summary> | 50 | /// <summary> |
51 | /// Used for the OnInventoryArchiveLoaded event. | 51 | /// Used for the OnInventoryArchiveLoaded event. |
@@ -56,9 +56,9 @@ namespace OpenSim.Region.Framework.Interfaces | |||
56 | /// <param name="invPath">The inventory path loaded</param> | 56 | /// <param name="invPath">The inventory path loaded</param> |
57 | /// <param name="savePath">The stream from which the archive was loaded</param> | 57 | /// <param name="savePath">The stream from which the archive was loaded</param> |
58 | /// <param name="reportedException">Contains the exception generated if the load did not succeed</param> | 58 | /// <param name="reportedException">Contains the exception generated if the load did not succeed</param> |
59 | /// <param name="LoadCount">Number of inventory items loaded from archive</param> | 59 | /// <param name="loadCount">Number of inventory items loaded from archive</param> |
60 | public delegate void InventoryArchiveLoaded( | 60 | public delegate void InventoryArchiveLoaded( |
61 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int LoadCount); | 61 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int loadCount); |
62 | 62 | ||
63 | 63 | ||
64 | public interface IInventoryArchiverModule | 64 | public interface IInventoryArchiverModule |