diff options
Added InterSimComms (Likely to be renamed) to the commsManager and moved the InformClientOfNeighbours method into that.
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs index 75b211d..02f17f0 100644 --- a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs | |||
@@ -10,20 +10,10 @@ namespace OpenGrid.Framework.Communications | |||
10 | { | 10 | { |
11 | public RegionServerCommsOGS() | 11 | public RegionServerCommsOGS() |
12 | { | 12 | { |
13 | userServer = new UserServer.UserCommsManagerOGS(); //Remote User Server | 13 | UserServer = new UserServer.UserCommsManagerOGS(); //Remote User Server |
14 | gridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server | 14 | GridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server |
15 | InterSims = new InterSimsCommsOGS(); | ||
15 | } | 16 | } |
16 | 17 | ||
17 | |||
18 | /// <summary> | ||
19 | /// informs a neighbouring sim to expect a child agent | ||
20 | /// </summary> | ||
21 | /// <param name="regionHandle"></param> | ||
22 | /// <param name="agentData"></param> | ||
23 | /// <returns></returns> | ||
24 | public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData | ||
25 | { | ||
26 | return false; | ||
27 | } | ||
28 | } | 18 | } |
29 | } | 19 | } |