diff options
author | MW | 2007-05-31 12:05:32 +0000 |
---|---|---|
committer | MW | 2007-05-31 12:05:32 +0000 |
commit | 33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1 (patch) | |
tree | ce87042013bd75aae144b17a813ba2a24a4e5a5b /Common | |
parent | The cleaning lady must be looking for a bonus (diff) | |
download | opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.zip opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.gz opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.bz2 opensim-SC_OLD-33b8fe52d61b5d0aa786ba9b1ce11d4caf9da5d1.tar.xz |
Diffstat (limited to 'Common')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs | 24 | ||||
-rw-r--r-- | Common/OpenSim.Framework/IRegionCommsHost.cs | 5 |
2 files changed, 27 insertions, 2 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs index 960bbef..c5413d2 100644 --- a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs +++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs | |||
@@ -18,6 +18,15 @@ namespace OpenGrid.Framework.Communications | |||
18 | /// <summary> | 18 | /// <summary> |
19 | /// | 19 | /// |
20 | /// </summary> | 20 | /// </summary> |
21 | /// <returns></returns> | ||
22 | public virtual RegionInfo LoadRegionConfigFromGridServer() | ||
23 | { | ||
24 | return null; | ||
25 | } | ||
26 | |||
27 | /// <summary> | ||
28 | /// | ||
29 | /// </summary> | ||
21 | /// <param name="regionInfo"></param> | 30 | /// <param name="regionInfo"></param> |
22 | /// <returns></returns> | 31 | /// <returns></returns> |
23 | public virtual IRegionCommsHost RegisterRegion(RegionInfo regionInfo) | 32 | public virtual IRegionCommsHost RegisterRegion(RegionInfo regionInfo) |
@@ -25,7 +34,20 @@ namespace OpenGrid.Framework.Communications | |||
25 | return null; | 34 | return null; |
26 | } | 35 | } |
27 | 36 | ||
28 | public virtual bool InformNeighbourChildAgent() | 37 | /// <summary> |
38 | /// | ||
39 | /// </summary> | ||
40 | /// <returns></returns> | ||
41 | public virtual bool InformNeighbourOfChildAgent() | ||
42 | { | ||
43 | return false; | ||
44 | } | ||
45 | |||
46 | /// <summary> | ||
47 | /// | ||
48 | /// </summary> | ||
49 | /// <returns></returns> | ||
50 | public virtual bool AvatarCrossingToRegion() | ||
29 | { | 51 | { |
30 | return false; | 52 | return false; |
31 | } | 53 | } |
diff --git a/Common/OpenSim.Framework/IRegionCommsHost.cs b/Common/OpenSim.Framework/IRegionCommsHost.cs index 367ecfc..006661d 100644 --- a/Common/OpenSim.Framework/IRegionCommsHost.cs +++ b/Common/OpenSim.Framework/IRegionCommsHost.cs | |||
@@ -1,6 +1,7 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenSim.Framework.Interfaces; | ||
4 | 5 | ||
5 | namespace OpenSim.Framework | 6 | namespace OpenSim.Framework |
6 | { | 7 | { |
@@ -8,6 +9,8 @@ namespace OpenSim.Framework | |||
8 | 9 | ||
9 | public interface IRegionCommsHost | 10 | public interface IRegionCommsHost |
10 | { | 11 | { |
11 | event ExpectUserDelegate ExpectUser; | 12 | event ExpectUserDelegate OnExpectUser; |
13 | event GenericCall2 OnExpectChildAgent; | ||
14 | event GenericCall2 OnAvatarCrossingIntoRegion; | ||
12 | } | 15 | } |
13 | } | 16 | } |