diff options
author | Tom Grimshaw | 2010-06-28 04:02:33 -0700 |
---|---|---|
committer | Tom Grimshaw | 2010-06-28 04:02:33 -0700 |
commit | a5a1df68c29b2d78279bcff60ce66fe97772d0c6 (patch) | |
tree | 587ac4ad0a775552c6276d795fec02f268faa01d /OpenSim/Data/IAssetData.cs | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
download | opensim-SC-a5a1df68c29b2d78279bcff60ce66fe97772d0c6.zip opensim-SC-a5a1df68c29b2d78279bcff60ce66fe97772d0c6.tar.gz opensim-SC-a5a1df68c29b2d78279bcff60ce66fe97772d0c6.tar.bz2 opensim-SC-a5a1df68c29b2d78279bcff60ce66fe97772d0c6.tar.xz |
Provide the interface for StoreAsset to report success or failure
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IAssetData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/IAssetData.cs b/OpenSim/Data/IAssetData.cs index 90d5eeb..065d3a5 100644 --- a/OpenSim/Data/IAssetData.cs +++ b/OpenSim/Data/IAssetData.cs | |||
@@ -34,7 +34,7 @@ namespace OpenSim.Data | |||
34 | public interface IAssetDataPlugin : IPlugin | 34 | public interface IAssetDataPlugin : IPlugin |
35 | { | 35 | { |
36 | AssetBase GetAsset(UUID uuid); | 36 | AssetBase GetAsset(UUID uuid); |
37 | void StoreAsset(AssetBase asset); | 37 | bool StoreAsset(AssetBase asset); |
38 | bool ExistsAsset(UUID uuid); | 38 | bool ExistsAsset(UUID uuid); |
39 | List<AssetMetadata> FetchAssetMetadataSet(int start, int count); | 39 | List<AssetMetadata> FetchAssetMetadataSet(int start, int count); |
40 | void Initialise(string connect); | 40 | void Initialise(string connect); |