aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IGridService.cs
diff options
context:
space:
mode:
authorDiva Canto2009-09-11 12:54:58 -0700
committerDiva Canto2009-09-11 12:54:58 -0700
commit44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3 (patch)
tree6d2a9a7fc7ac64ec6a5932b71411c29838521583 /OpenSim/Services/Interfaces/IGridService.cs
parentmoved AuthorizationRequest and AuthorizationResponse to IAuthorizationService... (diff)
downloadopensim-SC_OLD-44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3.zip
opensim-SC_OLD-44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3.tar.gz
opensim-SC_OLD-44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3.tar.bz2
opensim-SC_OLD-44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3.tar.xz
Changed names of methods in IGridService.
Diffstat (limited to 'OpenSim/Services/Interfaces/IGridService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IGridService.cs21
1 files changed, 13 insertions, 8 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs
index 25519f7..0eea3ea 100644
--- a/OpenSim/Services/Interfaces/IGridService.cs
+++ b/OpenSim/Services/Interfaces/IGridService.cs
@@ -55,15 +55,11 @@ namespace OpenSim.Services.Interfaces
55 /// <param name="x"></param> 55 /// <param name="x"></param>
56 /// <param name="y"></param> 56 /// <param name="y"></param>
57 /// <returns></returns> 57 /// <returns></returns>
58 List<SimpleRegionInfo> RequestNeighbours(UUID scopeID, uint x, uint y); 58 List<SimpleRegionInfo> GetNeighbours(UUID scopeID, uint x, uint y);
59 59
60 RegionInfo RequestNeighbourInfo(UUID regionID); 60 SimpleRegionInfo GetRegionByUUID(UUID scopeID, UUID regionID);
61 61
62 RegionInfo RequestClosestRegion(UUID scopeID, string regionName); 62 SimpleRegionInfo GetRegionByName(UUID scopeID, string regionName);
63
64 List<MapBlockData> RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
65 // not complete yet, only contains the fields needed for ParcelInfoReqeust
66 LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y);
67 63
68 /// <summary> 64 /// <summary>
69 /// Get information about regions starting with the provided name. 65 /// Get information about regions starting with the provided name.
@@ -78,6 +74,15 @@ namespace OpenSim.Services.Interfaces
78 /// A list of <see cref="RegionInfo"/>s of regions with matching name. If the 74 /// A list of <see cref="RegionInfo"/>s of regions with matching name. If the
79 /// grid-server couldn't be contacted or returned an error, return null. 75 /// grid-server couldn't be contacted or returned an error, return null.
80 /// </returns> 76 /// </returns>
81 List<RegionInfo> RequestNamedRegions(UUID scopeID, string name, int maxNumber); 77 List<SimpleRegionInfo> GetRegionsByName(UUID scopeID, string name, int maxNumber);
78
79
80 // Not sure about these two (diva)
81
82 List<MapBlockData> RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
83 // not complete yet, only contains the fields needed for ParcelInfoReqeust
84 LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y);
85
86
82 } 87 }
83} 88}