aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/IGridMessagingModule.cs
diff options
context:
space:
mode:
authorMW2009-02-21 13:44:03 +0000
committerMW2009-02-21 13:44:03 +0000
commit25661b611d241534e5e8d7ce1731de8506481a7d (patch)
treed61ae89bcb909225c6aef295bf6bddb21668b718 /OpenSim/Grid/GridServer/IGridMessagingModule.cs
parentAllow entry of '?' in http URIs. If the field being typed begins with (diff)
downloadopensim-SC_OLD-25661b611d241534e5e8d7ce1731de8506481a7d.zip
opensim-SC_OLD-25661b611d241534e5e8d7ce1731de8506481a7d.tar.gz
opensim-SC_OLD-25661b611d241534e5e8d7ce1731de8506481a7d.tar.bz2
opensim-SC_OLD-25661b611d241534e5e8d7ce1731de8506481a7d.tar.xz
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.
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/GridServer/IGridMessagingModule.cs11
1 files changed, 11 insertions, 0 deletions
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 @@
1using System;
2using System.Collections.Generic;
3using OpenSim.Framework.Servers;
4
5namespace OpenSim.Grid.GridServer
6{
7 public interface IGridMessagingModule
8 {
9 List<MessageServerInfo> MessageServers { get; }
10 }
11}