* Explicitly start the asset server thread so that unit tests can run single rather than multi-threaded (which may be behind the occasional test freezes)

This commit is contained in:
Justin Clarke Casey
2009-04-14 17:15:09 +00:00
parent ad2bd74057
commit 1894157dd3
8 changed files with 36 additions and 37 deletions

View File

@@ -37,11 +37,21 @@ namespace OpenSim.Framework
void Initialise(ConfigSettings settings);
void Initialise(ConfigSettings settings, string url, string dir, bool test);
void Initialise(ConfigSettings settings, string url);
/// <summary>
/// Start the asset server
/// </summary>
void Start();
/// <summary>
/// Stop the asset server
/// </summary>
void Stop();
void SetReceiver(IAssetReceiver receiver);
void RequestAsset(UUID assetID, bool isTexture);
void StoreAsset(AssetBase asset);
void UpdateAsset(AssetBase asset);
void Close();
}
/// <summary>