From f3a24e432f214f6b3484b620fabc058966628836 Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 22 Feb 2009 19:19:24 +0000 Subject: First step in giving the messaging server the modular refactoring treatment. As with the other two servers, this is very much a work in progress. --- OpenSim/Grid/MessagingServer/IUGAIMCore.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 OpenSim/Grid/MessagingServer/IUGAIMCore.cs (limited to 'OpenSim/Grid/MessagingServer/IUGAIMCore.cs') diff --git a/OpenSim/Grid/MessagingServer/IUGAIMCore.cs b/OpenSim/Grid/MessagingServer/IUGAIMCore.cs new file mode 100644 index 0000000..5ab1166 --- /dev/null +++ b/OpenSim/Grid/MessagingServer/IUGAIMCore.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; +using OpenSim.Framework.Servers; + +namespace OpenSim.Grid.MessagingServer +{ + public interface IUGAIMCore + { + T Get(); + void RegisterInterface(T iface); + bool TryGet(out T iface); + BaseHttpServer GetHttpServer(); + } +} -- cgit v1.1