aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IAssetServer.cs
diff options
context:
space:
mode:
authorMW2007-11-01 17:28:38 +0000
committerMW2007-11-01 17:28:38 +0000
commit7a66eff8af0d9d56ffb3b2c1f4f5088f98c99d64 (patch)
tree807894255a6f0b890816211a3c4ba18abe3d33f2 /OpenSim/Framework/IAssetServer.cs
parentTest on the grid asset problem, don't update to this version unless you just ... (diff)
downloadopensim-SC_OLD-7a66eff8af0d9d56ffb3b2c1f4f5088f98c99d64.zip
opensim-SC_OLD-7a66eff8af0d9d56ffb3b2c1f4f5088f98c99d64.tar.gz
opensim-SC_OLD-7a66eff8af0d9d56ffb3b2c1f4f5088f98c99d64.tar.bz2
opensim-SC_OLD-7a66eff8af0d9d56ffb3b2c1f4f5088f98c99d64.tar.xz
renamed FetchAsset to RequestAsset on IAssetServer, as think its a more fitting name. As the call shouldn't actually return the data, but just add a request for the data to be sent back via the callback.
Diffstat (limited to 'OpenSim/Framework/IAssetServer.cs')
-rw-r--r--OpenSim/Framework/IAssetServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IAssetServer.cs b/OpenSim/Framework/IAssetServer.cs
index 9a7dbab..a3553c4 100644
--- a/OpenSim/Framework/IAssetServer.cs
+++ b/OpenSim/Framework/IAssetServer.cs
@@ -37,7 +37,7 @@ namespace OpenSim.Framework
37 public interface IAssetServer 37 public interface IAssetServer
38 { 38 {
39 void SetReceiver(IAssetReceiver receiver); 39 void SetReceiver(IAssetReceiver receiver);
40 void FetchAsset(LLUUID assetID, bool isTexture); 40 void RequestAsset(LLUUID assetID, bool isTexture);
41 void UpdateAsset(AssetBase asset); 41 void UpdateAsset(AssetBase asset);
42 void StoreAndCommitAsset(AssetBase asset); 42 void StoreAndCommitAsset(AssetBase asset);
43 void Close(); 43 void Close();