diff options
author | MW | 2009-02-25 18:47:19 +0000 |
---|---|---|
committer | MW | 2009-02-25 18:47:19 +0000 |
commit | 0f62b2bacb00da2c3ab3733059cf613c8bebd0c5 (patch) | |
tree | 406ccdeafd5a61de2e07407d1381086bf0a56e90 /OpenSim/Grid/Framework | |
parent | More refactoring of the Grid, User and Messaging servers. (diff) | |
download | opensim-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.
Diffstat (limited to 'OpenSim/Grid/Framework')
-rw-r--r-- | OpenSim/Grid/Framework/IGridServiceModule.cs | 13 |
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 @@ | |||
1 | using System; | ||
2 | using OpenSim.Framework.Servers; | ||
3 | |||
4 | namespace 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 | } | ||