aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/Cache')
-rw-r--r--OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
index 958ef4e..0cbb717 100644
--- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
+++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
@@ -54,7 +54,7 @@ namespace OpenSim.Framework.Communications.Cache
54 /// <summary> 54 /// <summary>
55 /// The root library folder. 55 /// The root library folder.
56 /// </summary> 56 /// </summary>
57 public readonly LibraryRootFolder LibraryRoot; 57 public readonly InventoryFolderImpl LibraryRoot;
58 58
59 /// <summary> 59 /// <summary>
60 /// Constructor 60 /// Constructor
@@ -70,6 +70,10 @@ namespace OpenSim.Framework.Communications.Cache
70 /// <summary> 70 /// <summary>
71 /// A new user has moved into a region in this instance so retrieve their profile from the user service. 71 /// A new user has moved into a region in this instance so retrieve their profile from the user service.
72 /// </summary> 72 /// </summary>
73 ///
74 /// It isn't strictly necessary to make this call since user data can be lazily requested later on. However,
75 /// it might be helpful in order to avoid an initial response delay later on
76 ///
73 /// <param name="userID"></param> 77 /// <param name="userID"></param>
74 public void AddNewUser(UUID userID) 78 public void AddNewUser(UUID userID)
75 { 79 {