aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMW2009-02-25 18:47:19 +0000
committerMW2009-02-25 18:47:19 +0000
commit0f62b2bacb00da2c3ab3733059cf613c8bebd0c5 (patch)
tree406ccdeafd5a61de2e07407d1381086bf0a56e90
parentMore refactoring of the Grid, User and Messaging servers. (diff)
downloadopensim-SC_OLD-0f62b2bacb00da2c3ab3733059cf613c8bebd0c5.zip
opensim-SC_OLD-0f62b2bacb00da2c3ab3733059cf613c8bebd0c5.tar.gz
opensim-SC_OLD-0f62b2bacb00da2c3ab3733059cf613c8bebd0c5.tar.bz2
opensim-SC_OLD-0f62b2bacb00da2c3ab3733059cf613c8bebd0c5.tar.xz
Added IGridServiceModule to be the base interface for the Service Modules for the Grid, User and Messaging servers.
-rw-r--r--OpenSim/Grid/Framework/IGridServiceModule.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Grid/Framework/IGridServiceModule.cs b/OpenSim/Grid/Framework/IGridServiceModule.cs
new file mode 100644
index 0000000..6891beb
--- /dev/null
+++ b/OpenSim/Grid/Framework/IGridServiceModule.cs
@@ -0,0 +1,13 @@
1using System;
2using OpenSim.Framework.Servers;
3
4namespace OpenSim.Grid.Framework
5{
6 public interface IGridServiceModule
7 {
8 void Close();
9 void Initialise(IUGAIMCore core);
10 void PostInitialise();
11 void RegisterHandlers(BaseHttpServer httpServer);
12 }
13}