From d519f1885f587409592cf92bc0f4ba8533a1866f Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Wed, 19 Aug 2009 10:56:08 -0700
Subject: Added MoveItems, which is most useful upon viewer-delete inventory
operation. Moving a batch of items is a 1-time operation. Made it async
anyway, so that the viewer doesn't wait in case the DB layer is dumb (which
is the case currently).
---
OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs | 2 ++
1 file changed, 2 insertions(+)
(limited to 'OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs')
diff --git a/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs b/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs
index e4e713c..c89c9b7 100644
--- a/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs
+++ b/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs
@@ -116,6 +116,8 @@ namespace OpenSim.Services.Connectors
/// true if the item was successfully updated
bool UpdateItem(string userID, InventoryItemBase item, UUID session_id);
+ bool MoveItems(string userID, List items, UUID session_id);
+
///
/// Delete an item from the user's inventory
///
--
cgit v1.1