From 44343ed94d50bcdc2dbd1b1a450d7db6118fe2f3 Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Fri, 11 Sep 2009 12:54:58 -0700
Subject: Changed names of methods in IGridService.
---
OpenSim/Services/Interfaces/IGridService.cs | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
(limited to 'OpenSim/Services/Interfaces/IGridService.cs')
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
///
///
///
- List RequestNeighbours(UUID scopeID, uint x, uint y);
+ List GetNeighbours(UUID scopeID, uint x, uint y);
- RegionInfo RequestNeighbourInfo(UUID regionID);
+ SimpleRegionInfo GetRegionByUUID(UUID scopeID, UUID regionID);
- RegionInfo RequestClosestRegion(UUID scopeID, string regionName);
-
- List RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
- // not complete yet, only contains the fields needed for ParcelInfoReqeust
- LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y);
+ SimpleRegionInfo GetRegionByName(UUID scopeID, string regionName);
///
/// Get information about regions starting with the provided name.
@@ -78,6 +74,15 @@ namespace OpenSim.Services.Interfaces
/// A list of s of regions with matching name. If the
/// grid-server couldn't be contacted or returned an error, return null.
///
- List RequestNamedRegions(UUID scopeID, string name, int maxNumber);
+ List GetRegionsByName(UUID scopeID, string name, int maxNumber);
+
+
+ // Not sure about these two (diva)
+
+ List RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
+ // not complete yet, only contains the fields needed for ParcelInfoReqeust
+ LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y);
+
+
}
}
--
cgit v1.1