Changed names of methods in IGridService.
parent
44f1092b83
commit
44343ed94d
|
@ -55,15 +55,11 @@ namespace OpenSim.Services.Interfaces
|
||||||
/// <param name="x"></param>
|
/// <param name="x"></param>
|
||||||
/// <param name="y"></param>
|
/// <param name="y"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
List<SimpleRegionInfo> RequestNeighbours(UUID scopeID, uint x, uint y);
|
List<SimpleRegionInfo> GetNeighbours(UUID scopeID, uint x, uint y);
|
||||||
|
|
||||||
RegionInfo RequestNeighbourInfo(UUID regionID);
|
SimpleRegionInfo GetRegionByUUID(UUID scopeID, UUID regionID);
|
||||||
|
|
||||||
RegionInfo RequestClosestRegion(UUID scopeID, string regionName);
|
SimpleRegionInfo GetRegionByName(UUID scopeID, string regionName);
|
||||||
|
|
||||||
List<MapBlockData> 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);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get information about regions starting with the provided name.
|
/// Get information about regions starting with the provided name.
|
||||||
|
@ -78,6 +74,15 @@ namespace OpenSim.Services.Interfaces
|
||||||
/// A list of <see cref="RegionInfo"/>s of regions with matching name. If the
|
/// A list of <see cref="RegionInfo"/>s of regions with matching name. If the
|
||||||
/// grid-server couldn't be contacted or returned an error, return null.
|
/// grid-server couldn't be contacted or returned an error, return null.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
List<RegionInfo> RequestNamedRegions(UUID scopeID, string name, int maxNumber);
|
List<SimpleRegionInfo> GetRegionsByName(UUID scopeID, string name, int maxNumber);
|
||||||
|
|
||||||
|
|
||||||
|
// Not sure about these two (diva)
|
||||||
|
|
||||||
|
List<MapBlockData> 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);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue