diff options
Added InterSimComms (Likely to be renamed) to the commsManager and moved the InformClientOfNeighbours method into that.
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs index bfcd15f..aeaeb7b 100644 --- a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs | |||
@@ -14,19 +14,11 @@ namespace OpenGrid.Framework.Communications | |||
14 | public SandBoxManager SandManager = new SandBoxManager(); | 14 | public SandBoxManager SandManager = new SandBoxManager(); |
15 | public RegionServerCommsLocal() | 15 | public RegionServerCommsLocal() |
16 | { | 16 | { |
17 | userServer = new UserServer.UserCommsManagerLocal(); //Local User Server | 17 | UserServer = new UserServer.UserCommsManagerLocal(); //Local User Server |
18 | gridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server | 18 | GridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server |
19 | InterSims = new InterSimsCommsLocal(SandManager); | ||
19 | } | 20 | } |
20 | 21 | ||
21 | /// <summary> | 22 | |
22 | /// informs a neighbouring sim to expect a child agent | ||
23 | /// </summary> | ||
24 | /// <param name="regionHandle"></param> | ||
25 | /// <param name="agentData"></param> | ||
26 | /// <returns></returns> | ||
27 | public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData | ||
28 | { | ||
29 | return SandManager.InformNeighbourOfChildAgent(regionHandle, agentData); | ||
30 | } | ||
31 | } | 23 | } |
32 | } | 24 | } |