diff options
author | mingchen | 2007-06-09 21:04:13 +0000 |
---|---|---|
committer | mingchen | 2007-06-09 21:04:13 +0000 |
commit | fa8f143aec69e36ee90fb34e2f144733b66ca951 (patch) | |
tree | 9442f049f83b4ea1cb89f9205aa07fd375c84594 /Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs | |
parent | Number of small changes. (diff) | |
download | opensim-SC-fa8f143aec69e36ee90fb34e2f144733b66ca951.zip opensim-SC-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.gz opensim-SC-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.bz2 opensim-SC-fa8f143aec69e36ee90fb34e2f144733b66ca951.tar.xz |
*Reorganized RegionServerCommsManager for OGS and local support
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs new file mode 100644 index 0000000..b0db473 --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs | |||
@@ -0,0 +1,15 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenGrid.Framework.Communications | ||
6 | { | ||
7 | public class RegionServerCommsOGS : RegionServerCommsManager | ||
8 | { | ||
9 | public RegionServerCommsOGS() | ||
10 | { | ||
11 | userServer = new UserServer.UserCommsManagerOGS(); //Remote User Server | ||
12 | gridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server | ||
13 | } | ||
14 | } | ||
15 | } | ||