diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IAssetServer.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Framework/IAssetServer.cs b/OpenSim/Framework/IAssetServer.cs index f76d125..0a08ff6 100644 --- a/OpenSim/Framework/IAssetServer.cs +++ b/OpenSim/Framework/IAssetServer.cs | |||
@@ -37,11 +37,21 @@ namespace OpenSim.Framework | |||
37 | void Initialise(ConfigSettings settings); | 37 | void Initialise(ConfigSettings settings); |
38 | void Initialise(ConfigSettings settings, string url, string dir, bool test); | 38 | void Initialise(ConfigSettings settings, string url, string dir, bool test); |
39 | void Initialise(ConfigSettings settings, string url); | 39 | void Initialise(ConfigSettings settings, string url); |
40 | |||
41 | /// <summary> | ||
42 | /// Start the asset server | ||
43 | /// </summary> | ||
44 | void Start(); | ||
45 | |||
46 | /// <summary> | ||
47 | /// Stop the asset server | ||
48 | /// </summary> | ||
49 | void Stop(); | ||
50 | |||
40 | void SetReceiver(IAssetReceiver receiver); | 51 | void SetReceiver(IAssetReceiver receiver); |
41 | void RequestAsset(UUID assetID, bool isTexture); | 52 | void RequestAsset(UUID assetID, bool isTexture); |
42 | void StoreAsset(AssetBase asset); | 53 | void StoreAsset(AssetBase asset); |
43 | void UpdateAsset(AssetBase asset); | 54 | void UpdateAsset(AssetBase asset); |
44 | void Close(); | ||
45 | } | 55 | } |
46 | 56 | ||
47 | /// <summary> | 57 | /// <summary> |