Added IGridServiceModule to be the base interface for the Service Modules for the Grid, User and Messaging servers.
parent
4db232763f
commit
0f62b2bacb
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue