aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/InventoryCache.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-04-06Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto1-0/+51
2012-03-09More on inventory transfer hold ups:Diva Canto1-0/+59
- Added an inventory cache for caching root and system folders - Synchronized the remote inventory connector, so that all the remote inventory calls are serialized This will not make much difference in the hold ups. We'd have to move the FireAndForget high up to AddInventoryItem, but that opens up a can of worms regarding the notification of the recipient... the recipient would be notified of the offer before the items are effectively in his inventory, which could lead to surprises.
2011-12-29Deleted two obsolete files in Inventory modules.Diva Canto1-237/+0
2010-09-12Formatting cleanup.Jeff Ames1-1/+1
2010-08-23Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)1-0/+7
2010-04-30Fix a null ref from trying to access a dictionary that was never initialized.Melanie1-1/+2
2010-04-29Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto1-0/+51
mind. Unfinished.
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake1-1/+1
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2009-08-28Try to cache system folders if they aren't already there when one is requestedJustin Clark-Casey (justincc)1-0/+13
This operation can be performed legitimately on standalones without a logged in user
2009-08-28Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)1-13/+34
2009-08-12Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto1-0/+1
Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
2009-08-13Formatting cleanup. Add copyright headers.Jeff Ames1-1/+28
2009-08-12* Added two new packet handler implementations for inventory ops. This is ↵Diva Canto1-4/+5
starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
2009-08-12Better test for dropping inventory cache and writing out debug messages.Diva Canto1-16/+21
2009-08-11Fixed test for detecting when user is no longer in sim.Diva Canto1-3/+5
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-0/+108
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.