Added IGridServiceModule to be the base interface for the Service Modules for the Grid, User and Messaging servers.

GenericGridServerConcept
MW 2009-02-25 18:47:19 +00:00
parent 4db232763f
commit 0f62b2bacb
1 changed files with 13 additions and 0 deletions

View File

@ -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);
}
}