* Make object persistence more granular by separating prim and prim inventory persistence

This commit is contained in:
Justin Clarke Casey
2008-01-21 15:06:49 +00:00
parent da8923450a
commit 504ae63669
8 changed files with 141 additions and 131 deletions

View File

@@ -49,6 +49,11 @@ namespace OpenSim.DataStore.NullStorage
public void RemoveObject(LLUUID obj, LLUUID regionUUID)
{
}
// see IRegionDatastore
public void StorePrimInventory(LLUUID primID, IDictionary<LLUUID, TaskInventoryItem> items)
{
}
public List<SceneObjectGroup> LoadObjects(LLUUID regionUUID)
{
@@ -81,4 +86,4 @@ namespace OpenSim.DataStore.NullStorage
{
}
}
}
}