From 25661b611d241534e5e8d7ce1731de8506481a7d Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 21 Feb 2009 13:44:03 +0000 Subject: 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. --- OpenSim/Grid/GridServer/IGridMessagingModule.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 OpenSim/Grid/GridServer/IGridMessagingModule.cs (limited to 'OpenSim/Grid/GridServer/IGridMessagingModule.cs') diff --git a/OpenSim/Grid/GridServer/IGridMessagingModule.cs b/OpenSim/Grid/GridServer/IGridMessagingModule.cs new file mode 100644 index 0000000..969910e --- /dev/null +++ b/OpenSim/Grid/GridServer/IGridMessagingModule.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using OpenSim.Framework.Servers; + +namespace OpenSim.Grid.GridServer +{ + public interface IGridMessagingModule + { + List MessageServers { get; } + } +} -- cgit v1.1