From 0f62b2bacb00da2c3ab3733059cf613c8bebd0c5 Mon Sep 17 00:00:00 2001 From: MW Date: Wed, 25 Feb 2009 18:47:19 +0000 Subject: Added IGridServiceModule to be the base interface for the Service Modules for the Grid, User and Messaging servers. --- OpenSim/Grid/Framework/IGridServiceModule.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 OpenSim/Grid/Framework/IGridServiceModule.cs (limited to 'OpenSim/Grid') 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 @@ +using System; +using OpenSim.Framework.Servers; + +namespace OpenSim.Grid.Framework +{ + public interface IGridServiceModule + { + void Close(); + void Initialise(IUGAIMCore core); + void PostInitialise(); + void RegisterHandlers(BaseHttpServer httpServer); + } +} -- cgit v1.1