diff options
class name change and directory properties modified
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs new file mode 100644 index 0000000..960bbef --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs | |||
@@ -0,0 +1,33 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework; | ||
5 | using OpenSim.Framework.Interfaces; | ||
6 | using OpenSim.Framework.Types; | ||
7 | |||
8 | namespace OpenGrid.Framework.Communications | ||
9 | { | ||
10 | public class RegionServerCommsManager | ||
11 | { | ||
12 | |||
13 | public RegionServerCommsManager() | ||
14 | { | ||
15 | |||
16 | } | ||
17 | |||
18 | /// <summary> | ||
19 | /// | ||
20 | /// </summary> | ||
21 | /// <param name="regionInfo"></param> | ||
22 | /// <returns></returns> | ||
23 | public virtual IRegionCommsHost RegisterRegion(RegionInfo regionInfo) | ||
24 | { | ||
25 | return null; | ||
26 | } | ||
27 | |||
28 | public virtual bool InformNeighbourChildAgent() | ||
29 | { | ||
30 | return false; | ||
31 | } | ||
32 | } | ||
33 | } | ||