From fa8f143aec69e36ee90fb34e2f144733b66ca951 Mon Sep 17 00:00:00 2001 From: mingchen Date: Sat, 9 Jun 2007 21:04:13 +0000 Subject: *Reorganized RegionServerCommsManager for OGS and local support --- .../GridServer/GridCommsManagerBase.cs | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerBase.cs (limited to 'Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerBase.cs') diff --git a/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerBase.cs b/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerBase.cs new file mode 100644 index 0000000..11b5ea7 --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerBase.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Text; +using OpenSim.Framework.Types; +using OpenSim.Framework; + +namespace OpenGrid.Framework.Communications.GridServer +{ + public class GridCommsManagerBase + { + public GridCommsManagerBase() + { + } + /// + /// + /// + /// + /// + public virtual RegionCommsHostBase RegisterRegion(RegionInfo regionInfo) + { + return null; + } + + /// + /// + /// + /// + /// + public virtual List RequestNeighbours(RegionInfo regionInfo) + { + return null; + } + + /// + /// + /// + /// + public virtual bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData + { + return false; + } + + public virtual bool AddNewSession(ulong regionHandle, Login loginData) + { + return false; + } + + + } +} -- cgit v1.1