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.

This commit is contained in:
MW
2007-11-01 17:28:38 +00:00
parent 88f04731ca
commit 7a66eff8af
3 changed files with 6 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ namespace OpenSim.Framework
public interface IAssetServer
{
void SetReceiver(IAssetReceiver receiver);
void FetchAsset(LLUUID assetID, bool isTexture);
void RequestAsset(LLUUID assetID, bool isTexture);
void UpdateAsset(AssetBase asset);
void StoreAndCommitAsset(AssetBase asset);
void Close();