diff options
author | Justin Clark-Casey (justincc) | 2014-01-16 00:33:04 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-01-16 00:33:04 +0000 |
commit | 1a8b56fa876558648f68bb58fd170af79d82efd5 (patch) | |
tree | 432f622e65fda158d1b0aa0b3e68653a3bda018c /OpenSim/Services | |
parent | Merge branch 'justincc-master' (diff) | |
parent | Can delete the Offline Messages sent to/from a user. (diff) | |
download | opensim-SC_OLD-1a8b56fa876558648f68bb58fd170af79d82efd5.zip opensim-SC_OLD-1a8b56fa876558648f68bb58fd170af79d82efd5.tar.gz opensim-SC_OLD-1a8b56fa876558648f68bb58fd170af79d82efd5.tar.bz2 opensim-SC_OLD-1a8b56fa876558648f68bb58fd170af79d82efd5.tar.xz |
Merge branch 'justincc-master'
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IOfflineIMService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IOfflineIMService.cs b/OpenSim/Services/Interfaces/IOfflineIMService.cs index 2848967..588aaaf 100644 --- a/OpenSim/Services/Interfaces/IOfflineIMService.cs +++ b/OpenSim/Services/Interfaces/IOfflineIMService.cs | |||
@@ -35,7 +35,14 @@ namespace OpenSim.Services.Interfaces | |||
35 | public interface IOfflineIMService | 35 | public interface IOfflineIMService |
36 | { | 36 | { |
37 | List<GridInstantMessage> GetMessages(UUID principalID); | 37 | List<GridInstantMessage> GetMessages(UUID principalID); |
38 | |||
38 | bool StoreMessage(GridInstantMessage im, out string reason); | 39 | bool StoreMessage(GridInstantMessage im, out string reason); |
40 | |||
41 | /// <summary> | ||
42 | /// Delete messages to or from this user (or group). | ||
43 | /// </summary> | ||
44 | /// <param name="userID">A user or group ID</param> | ||
45 | void DeleteMessages(UUID userID); | ||
39 | } | 46 | } |
40 | 47 | ||
41 | public class OfflineIMDataUtils | 48 | public class OfflineIMDataUtils |