diff options
Started work on OpenGrid.Framework.Communications
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/CommsManager.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/CommsManager.cs b/Common/OpenGrid.Framework.Communications/CommsManager.cs new file mode 100644 index 0000000..0cc2253 --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/CommsManager.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 CommsManager | ||
11 | { | ||
12 | |||
13 | public CommsManager() | ||
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 | } | ||