diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs (renamed from OpenSim/Framework/Communications/Cache/AssetTransactions.cs) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs b/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs index 996e5ba..e74a06b 100644 --- a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs +++ b/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs | |||
@@ -35,6 +35,9 @@ using OpenSim.Region.Capabilities; | |||
35 | 35 | ||
36 | namespace OpenSim.Framework.Communications.Cache | 36 | namespace OpenSim.Framework.Communications.Cache |
37 | { | 37 | { |
38 | /// <summary> | ||
39 | /// Manage asset transactions for a single agent. | ||
40 | /// </summary> | ||
38 | public class AgentAssetTransactions | 41 | public class AgentAssetTransactions |
39 | { | 42 | { |
40 | private static readonly log4net.ILog m_log | 43 | private static readonly log4net.ILog m_log |
@@ -45,11 +48,11 @@ namespace OpenSim.Framework.Communications.Cache | |||
45 | public List<NoteCardCapsUpdate> NotecardUpdaters = new List<NoteCardCapsUpdate>(); | 48 | public List<NoteCardCapsUpdate> NotecardUpdaters = new List<NoteCardCapsUpdate>(); |
46 | public LLUUID UserID; | 49 | public LLUUID UserID; |
47 | public Dictionary<LLUUID, AssetXferUploader> XferUploaders = new Dictionary<LLUUID, AssetXferUploader>(); | 50 | public Dictionary<LLUUID, AssetXferUploader> XferUploaders = new Dictionary<LLUUID, AssetXferUploader>(); |
48 | public AssetTransactionManager Manager; | 51 | public AgentAssetTransactionsManager Manager; |
49 | private bool m_dumpAssetsToFile; | 52 | private bool m_dumpAssetsToFile; |
50 | 53 | ||
51 | // Methods | 54 | // Methods |
52 | public AgentAssetTransactions(LLUUID agentID, AssetTransactionManager manager, bool dumpAssetsToFile) | 55 | public AgentAssetTransactions(LLUUID agentID, AgentAssetTransactionsManager manager, bool dumpAssetsToFile) |
53 | { | 56 | { |
54 | UserID = agentID; | 57 | UserID = agentID; |
55 | Manager = manager; | 58 | Manager = manager; |