aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs
diff options
context:
space:
mode:
authorMW2009-02-25 19:39:56 +0000
committerMW2009-02-25 19:39:56 +0000
commitc856da2ee6634762951312b160ef1f85634d6c89 (patch)
treef4775f60a9a6de46d9612a57b3b437605576a56d /OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs
parentAdded IGridServiceModule to be the base interface for the Service Modules for... (diff)
downloadopensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.zip
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.gz
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.bz2
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.xz
Renamed IUGAIMCore to IGridServiceCore, still not really happy with this name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs b/OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs
index 7002a2e..b751d37 100644
--- a/OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs
+++ b/OpenSim/Grid/MessagingServer.Modules/MessageRegionModule.cs
@@ -50,12 +50,12 @@ namespace OpenSim.Grid.MessagingServer.Modules
50 50
51 private IMessageUserServerService m_userServerModule; 51 private IMessageUserServerService m_userServerModule;
52 52
53 private IUGAIMCore m_messageCore; 53 private IGridServiceCore m_messageCore;
54 54
55 // a dictionary of all current regions this server knows about 55 // a dictionary of all current regions this server knows about
56 private Dictionary<ulong, RegionProfileData> m_regionInfoCache = new Dictionary<ulong, RegionProfileData>(); 56 private Dictionary<ulong, RegionProfileData> m_regionInfoCache = new Dictionary<ulong, RegionProfileData>();
57 57
58 public MessageRegionModule(MessageServerConfig config, IUGAIMCore messageCore) 58 public MessageRegionModule(MessageServerConfig config, IGridServiceCore messageCore)
59 { 59 {
60 m_cfg = config; 60 m_cfg = config;
61 m_messageCore = messageCore; 61 m_messageCore = messageCore;