More refactoring of the Grid, User and Messaging servers.

This commit is contained in:
MW
2009-02-25 18:33:15 +00:00
parent 50dcd66896
commit 4db232763f
15 changed files with 395 additions and 228 deletions

View File

@@ -51,7 +51,7 @@ namespace OpenSim.Grid.GridServer.Modules
protected GridConfig m_config;
protected IGridMessagingMapper m_messagingServerMapper;
protected IMessagingServerDiscovery m_messagingServerMapper;
/// <value>
/// Used to notify old regions as to which OpenSim version to upgrade to
/// </value>
@@ -80,8 +80,8 @@ namespace OpenSim.Grid.GridServer.Modules
public void PostInitialise()
{
IGridMessagingMapper messagingModule;
if (m_gridCore.TryGet<IGridMessagingMapper>(out messagingModule))
IMessagingServerDiscovery messagingModule;
if (m_gridCore.TryGet<IMessagingServerDiscovery>(out messagingModule))
{
m_messagingServerMapper = messagingModule;
}