aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
diff options
context:
space:
mode:
authorMW2007-06-24 18:40:02 +0000
committerMW2007-06-24 18:40:02 +0000
commitd607914f6a7e0ef7890ae229474a1ad90511868f (patch)
tree0030127df56b96c774faaf8e73a74620d0a13c54 /Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
parent* Updated to use multi-listeners (diff)
downloadopensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.zip
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.gz
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.bz2
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.xz
Hopefully enabled the OGS commsManager
Diffstat (limited to 'Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs')
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
new file mode 100644
index 0000000..f151f56
--- /dev/null
+++ b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
@@ -0,0 +1,18 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenGrid.Framework.Communications;
5namespace OpenGrid.Framework.Communications.OGS1
6{
7 public class GridCommsManager : CommunicationsManager
8 {
9
10
11 public GridCommsManager()
12 {
13 GridServer = new OGS1GridServices();
14 InterRegion = new OGSInterSimComms();
15 UserServer = new OGSUserServices();
16 }
17 }
18}