aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorMelanie2010-01-04 05:34:32 +0000
committerMelanie2010-01-04 05:34:32 +0000
commitf198c6854708776a689797d73af49f9846ea9b79 (patch)
tree9a12ae2f7dd394bf2c0346b1d6419927f85a3263 /OpenSim/Services
parentCause llSetText to send prim updates. (diff)
downloadopensim-SC_OLD-f198c6854708776a689797d73af49f9846ea9b79.zip
opensim-SC_OLD-f198c6854708776a689797d73af49f9846ea9b79.tar.gz
opensim-SC_OLD-f198c6854708776a689797d73af49f9846ea9b79.tar.bz2
opensim-SC_OLD-f198c6854708776a689797d73af49f9846ea9b79.tar.xz
Mark GetUserInventory as obsolete. It is still used in the default
avatars module and in the REST inventory service, but future inventory services and/or connector will not include this method anymore, because it is dangerous on large inventory servers. Marking as obsolete to give an incentive to rewrite these services to use the recursive fetching or more targeted retrieval.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/Interfaces/IInventoryService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IInventoryService.cs b/OpenSim/Services/Interfaces/IInventoryService.cs
index c775090..1b78fb3 100644
--- a/OpenSim/Services/Interfaces/IInventoryService.cs
+++ b/OpenSim/Services/Interfaces/IInventoryService.cs
@@ -59,6 +59,7 @@ namespace OpenSim.Services.Interfaces
59 /// </summary> 59 /// </summary>
60 /// <param name="userID"></param> 60 /// <param name="userID"></param>
61 /// <returns></returns> 61 /// <returns></returns>
62 [Obsolete]
62 InventoryCollection GetUserInventory(UUID userID); 63 InventoryCollection GetUserInventory(UUID userID);
63 64
64 /// <summary> 65 /// <summary>
@@ -67,6 +68,7 @@ namespace OpenSim.Services.Interfaces
67 /// </summary> 68 /// </summary>
68 /// <param name="userID"></param> 69 /// <param name="userID"></param>
69 /// <param name="callback"></param> 70 /// <param name="callback"></param>
71 [Obsolete]
70 void GetUserInventory(UUID userID, InventoryReceiptCallback callback); 72 void GetUserInventory(UUID userID, InventoryReceiptCallback callback);
71 73
72 /// <summary> 74 /// <summary>