Refactored the GridServer into a GridDBService and a set of "modules".

Currently they aren't plugin modules as the support for dynamically loading them isn't complete.
This commit is contained in:
MW
2009-02-21 13:44:03 +00:00
parent aaf8b07ecf
commit 25661b611d
7 changed files with 1621 additions and 1323 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using OpenSim.Framework.Servers;
namespace OpenSim.Grid.GridServer
{
public interface IGridMessagingModule
{
List<MessageServerInfo> MessageServers { get; }
}
}