diff options
author | Diva Canto | 2015-08-01 09:30:34 -0700 |
---|---|---|
committer | Diva Canto | 2015-08-01 09:30:34 -0700 |
commit | 32d87aa168bf89996a8741b8d67c92afd1bb2531 (patch) | |
tree | 5eb1c38ad98fe32a8e4b80af6460f312c3ddc3a2 /OpenSim/Services/Interfaces | |
parent | Show last online status of group members from the PresenceService in group pr... (diff) | |
download | opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.zip opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.gz opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.bz2 opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.xz |
Mantis #7664: Added IHypergridLinker interface to establish a contract about what implementers need to provide publicly. This is used by 3rd-party addons such as Wifi.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Interfaces/IGridService.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index 0b318b3..f5f1f75 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs | |||
@@ -124,6 +124,12 @@ namespace OpenSim.Services.Interfaces | |||
124 | Dictionary<string,object> GetExtraFeatures(); | 124 | Dictionary<string,object> GetExtraFeatures(); |
125 | } | 125 | } |
126 | 126 | ||
127 | public interface IHypergridLinker | ||
128 | { | ||
129 | GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason); | ||
130 | bool TryUnlinkRegion(string mapName); | ||
131 | } | ||
132 | |||
127 | public class GridRegion | 133 | public class GridRegion |
128 | { | 134 | { |
129 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 135 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |