Merge branch 'careminster' into careminster-presence-refactor

This commit is contained in:
Melanie
2010-04-13 04:36:08 +01:00
25 changed files with 694 additions and 203 deletions

View File

@@ -51,7 +51,15 @@ namespace OpenSim.Services.Interfaces
byte[] GetData(string id);
/// <summary>
/// Get an asset asynchronously
/// Synchronously fetches an asset from the local cache only
/// </summary>
/// <param name="id">Asset ID</param>
/// <returns>The fetched asset, or null if it did not exist in the local cache</returns>
AssetBase GetCached(string id);
/// <summary>
/// Get an asset synchronously or asynchronously (depending on whether
/// it is locally cached) and fire a callback with the fetched asset
/// </summary>
/// <param name="id">The asset id</param>
/// <param name="sender">Represents the requester. Passed back via the handler</param>