Allow an incoming identifier to be specified for a JsonStore.

This commit is contained in:
Mic Bowman
2012-09-11 16:42:07 -07:00
parent d53a53d4c5
commit f06394f195
3 changed files with 9 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ namespace OpenSim.Region.Framework.Interfaces
public interface IJsonStoreModule
{
bool CreateStore(string value, out UUID result);
bool CreateStore(string value, ref UUID result);
bool DestroyStore(UUID storeID);
bool TestPath(UUID storeID, string path, bool useJson);
bool SetValue(UUID storeID, string path, string value, bool useJson);