From 03155e362c49d3de0ec34e54dde31205c0a34e85 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 29 Apr 2008 17:50:29 +0000 Subject: * Implemented new InterRegion comms method in the form of InterregionModule * Interfaces and methods have been defined for basic operation, however a replacement grid module is required to share region URIs with neighbours for this module to work. * Tackling that next. --- .../Communications/Interregion/IInterregionModule.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 OpenSim/Region/Environment/Modules/Communications/Interregion/IInterregionModule.cs (limited to 'OpenSim/Region/Environment/Modules/Communications/Interregion/IInterregionModule.cs') diff --git a/OpenSim/Region/Environment/Modules/Communications/Interregion/IInterregionModule.cs b/OpenSim/Region/Environment/Modules/Communications/Interregion/IInterregionModule.cs new file mode 100644 index 0000000..c15738c --- /dev/null +++ b/OpenSim/Region/Environment/Modules/Communications/Interregion/IInterregionModule.cs @@ -0,0 +1,14 @@ +using OpenSim.Framework; +using OpenSim.Region.Environment.Scenes; + +namespace OpenSim.Region.Environment.Modules.Communications.Interregion +{ + public interface IInterregionModule + { + void RegisterMethod(T e); + bool HasInterface(Location loc); + T RequestInterface(Location loc); + T[] RequestInterface(); + Location GetLocationByDirection(Scene scene, InterregionModule.Direction dir); + } +} \ No newline at end of file -- cgit v1.1