diff options
author | Sean Dague | 2009-02-09 21:47:55 +0000 |
---|---|---|
committer | Sean Dague | 2009-02-09 21:47:55 +0000 |
commit | 8088802c218d7eb4a47018b5b3bb70e7463a03b1 (patch) | |
tree | ac22b97c3dce09a91bae18b5840f8654813dcfc8 /OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs | |
parent | Thank you kindly, TLaukkan (Tommil) for a patch that: (diff) | |
download | opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.zip opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.gz opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.bz2 opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.xz |
From Alan Webb <awebb@linux.vnet.ibm.com>
These changes replace all direct references to the AssetCache with
IAssetCache. There is no change to functionality. Everything works as
before.
This is laying the groundwork for making it possible to register
alternative asset caching mechanisms without disrupting other parts of
OpenSim or their dependencies upon AssetCache functionality.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs index 9b71770..43a2e23 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs | |||
@@ -55,7 +55,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
55 | new Dictionary<UUID, IPriorityQueueHandle<Prio<J2KImage>>>(); | 55 | new Dictionary<UUID, IPriorityQueueHandle<Prio<J2KImage>>>(); |
56 | 56 | ||
57 | private LLClientView m_client; | 57 | private LLClientView m_client; |
58 | private readonly AssetCache m_assetCache; | 58 | private readonly IAssetCache m_assetCache; |
59 | private bool m_shuttingdown = false; | 59 | private bool m_shuttingdown = false; |
60 | private readonly IJ2KDecoder m_j2kDecodeModule; | 60 | private readonly IJ2KDecoder m_j2kDecodeModule; |
61 | 61 | ||
@@ -67,7 +67,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
67 | /// <param name="client">LLClientView of client</param> | 67 | /// <param name="client">LLClientView of client</param> |
68 | /// <param name="pAssetCache">The Asset retrieval system</param> | 68 | /// <param name="pAssetCache">The Asset retrieval system</param> |
69 | /// <param name="pJ2kDecodeModule">The Jpeg2000 Decoder</param> | 69 | /// <param name="pJ2kDecodeModule">The Jpeg2000 Decoder</param> |
70 | public LLImageManager(LLClientView client, AssetCache pAssetCache, IJ2KDecoder pJ2kDecodeModule) | 70 | public LLImageManager(LLClientView client, IAssetCache pAssetCache, IJ2KDecoder pJ2kDecodeModule) |
71 | { | 71 | { |
72 | m_client = client; | 72 | m_client = client; |
73 | m_assetCache = pAssetCache; | 73 | m_assetCache = pAssetCache; |