diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/AssetServerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetServerBase.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetServerBase.cs b/OpenSim/Framework/Communications/Cache/AssetServerBase.cs index 1a7f872..b16512c 100644 --- a/OpenSim/Framework/Communications/Cache/AssetServerBase.cs +++ b/OpenSim/Framework/Communications/Cache/AssetServerBase.cs | |||
@@ -36,7 +36,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
36 | { | 36 | { |
37 | public abstract class AssetServerBase : IAssetServer | 37 | public abstract class AssetServerBase : IAssetServer |
38 | { | 38 | { |
39 | private static readonly ILog m_log | 39 | private static readonly ILog m_log |
40 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 40 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
41 | 41 | ||
42 | protected IAssetReceiver m_receiver; | 42 | protected IAssetReceiver m_receiver; |
@@ -47,12 +47,12 @@ namespace OpenSim.Framework.Communications.Cache | |||
47 | 47 | ||
48 | // Temporarily hardcoded - should be a plugin | 48 | // Temporarily hardcoded - should be a plugin |
49 | protected IAssetLoader assetLoader = new AssetLoaderFileSystem(); | 49 | protected IAssetLoader assetLoader = new AssetLoaderFileSystem(); |
50 | 50 | ||
51 | protected abstract void StoreAsset(AssetBase asset); | 51 | protected abstract void StoreAsset(AssetBase asset); |
52 | protected abstract void CommitAssets(); | 52 | protected abstract void CommitAssets(); |
53 | 53 | ||
54 | /// <summary> | 54 | /// <summary> |
55 | /// This method must be implemented by a subclass to retrieve the asset named in the | 55 | /// This method must be implemented by a subclass to retrieve the asset named in the |
56 | /// AssetRequest. If the asset is not found, null should be returned. | 56 | /// AssetRequest. If the asset is not found, null should be returned. |
57 | /// </summary> | 57 | /// </summary> |
58 | /// <param name="req"></param> | 58 | /// <param name="req"></param> |
@@ -60,7 +60,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
60 | protected abstract AssetBase GetAsset(AssetRequest req); | 60 | protected abstract AssetBase GetAsset(AssetRequest req); |
61 | 61 | ||
62 | /// <summary> | 62 | /// <summary> |
63 | /// Process an asset request. This method will call GetAsset(AssetRequest req) | 63 | /// Process an asset request. This method will call GetAsset(AssetRequest req) |
64 | /// on the subclass. | 64 | /// on the subclass. |
65 | /// </summary> | 65 | /// </summary> |
66 | /// <param name="req"></param> | 66 | /// <param name="req"></param> |