diff options
Some Rearranging of CommsManager.
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/IGridServices.cs (renamed from Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs) | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs b/Common/OpenGrid.Framework.Communications/IGridServices.cs index bd00a14..9466647 100644 --- a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs +++ b/Common/OpenGrid.Framework.Communications/IGridServices.cs | |||
@@ -25,22 +25,19 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | |||
28 | using System; | 29 | using System; |
29 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
30 | using System.Text; | 31 | using System.Text; |
31 | using OpenSim.Framework; | ||
32 | using OpenSim.Framework.Types; | 32 | using OpenSim.Framework.Types; |
33 | using OpenSim.Framework; | ||
33 | 34 | ||
34 | namespace OpenGrid.Framework.Communications | 35 | namespace OpenGrid.Framework.Communications |
35 | { | 36 | { |
36 | public class RegionServerCommsOGS : RegionServerCommsManager | 37 | public interface IGridServices |
37 | { | 38 | { |
38 | public RegionServerCommsOGS() | 39 | RegionCommsHostBase RegisterRegion(RegionInfo regionInfo); |
39 | { | 40 | List<RegionInfo> RequestNeighbours(RegionInfo regionInfo); |
40 | UserServer = new UserServer.UserCommsManagerOGS(); //Remote User Server | 41 | RegionInfo RequestNeighbourInfo(ulong regionHandle); |
41 | GridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server | ||
42 | InterSims = new InterSimsCommsOGS(); | ||
43 | } | ||
44 | |||
45 | } | 42 | } |
46 | } | 43 | } |