diff options
author | Mike Mazur | 2009-02-16 02:27:25 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-16 02:27:25 +0000 |
commit | f8ea2740909cbe33c7729be0333260f0567e7867 (patch) | |
tree | 19559d7130b5200c8bcc7f0639f2dadaac77d47a /OpenSim/Grid/AssetInventoryServer/Interfaces.cs | |
parent | AssetInventoryServer now compiles while using the standard OpenSim (diff) | |
download | opensim-SC_OLD-f8ea2740909cbe33c7729be0333260f0567e7867.zip opensim-SC_OLD-f8ea2740909cbe33c7729be0333260f0567e7867.tar.gz opensim-SC_OLD-f8ea2740909cbe33c7729be0333260f0567e7867.tar.bz2 opensim-SC_OLD-f8ea2740909cbe33c7729be0333260f0567e7867.tar.xz |
- asset server functionality works with OpenSim's HttpServer
- start of removal of AssetInventoryServer.Metadata class
Diffstat (limited to 'OpenSim/Grid/AssetInventoryServer/Interfaces.cs')
-rw-r--r-- | OpenSim/Grid/AssetInventoryServer/Interfaces.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/AssetInventoryServer/Interfaces.cs b/OpenSim/Grid/AssetInventoryServer/Interfaces.cs index 19298c5..d934b14 100644 --- a/OpenSim/Grid/AssetInventoryServer/Interfaces.cs +++ b/OpenSim/Grid/AssetInventoryServer/Interfaces.cs | |||
@@ -77,7 +77,7 @@ namespace OpenSim.Grid.AssetInventoryServer | |||
77 | { | 77 | { |
78 | BackendResponse TryFetchMetadata(UUID assetID, out Metadata metadata); | 78 | BackendResponse TryFetchMetadata(UUID assetID, out Metadata metadata); |
79 | BackendResponse TryFetchData(UUID assetID, out byte[] assetData); | 79 | BackendResponse TryFetchData(UUID assetID, out byte[] assetData); |
80 | BackendResponse TryFetchDataMetadata(UUID assetID, out Metadata metadata, out byte[] assetData); | 80 | BackendResponse TryFetchDataMetadata(UUID assetID, out AssetBase asset); |
81 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData); | 81 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData); |
82 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData, out UUID assetID); | 82 | BackendResponse TryCreateAsset(Metadata metadata, byte[] assetData, out UUID assetID); |
83 | int ForEach(Action<Metadata> action, int start, int count); | 83 | int ForEach(Action<Metadata> action, int start, int count); |