mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Added IGridServiceModule to be the base interface for the Service Modules for the Grid, User and Messaging servers.
This commit is contained in:
13
OpenSim/Grid/Framework/IGridServiceModule.cs
Normal file
13
OpenSim/Grid/Framework/IGridServiceModule.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user