diff options
author | Justin Clarke Casey | 2008-09-21 16:58:14 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-21 16:58:14 +0000 |
commit | 1a71a3a56776bc1d91f9da031a295fd4a0023e87 (patch) | |
tree | 2ba99a3fa223499313d3cc9c199c042859af148d /OpenSim/Framework | |
parent | Don't attach attachements to child agents. This coincidentially fixes a race (diff) | |
download | opensim-SC_OLD-1a71a3a56776bc1d91f9da031a295fd4a0023e87.zip opensim-SC_OLD-1a71a3a56776bc1d91f9da031a295fd4a0023e87.tar.gz opensim-SC_OLD-1a71a3a56776bc1d91f9da031a295fd4a0023e87.tar.bz2 opensim-SC_OLD-1a71a3a56776bc1d91f9da031a295fd4a0023e87.tar.xz |
* Fix http://opensimulator.org/mantis/view.php?id=2189
* Allow a grid mode region simulator to properly shutdown even if the grid service is offline
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/IGridServices.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IGridServices.cs b/OpenSim/Framework/Communications/IGridServices.cs index f6a2885..177009d 100644 --- a/OpenSim/Framework/Communications/IGridServices.cs +++ b/OpenSim/Framework/Communications/IGridServices.cs | |||
@@ -47,6 +47,12 @@ namespace OpenSim.Framework.Communications | |||
47 | /// <exception cref="System.Exception">Thrown if region registration failed</exception> | 47 | /// <exception cref="System.Exception">Thrown if region registration failed</exception> |
48 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); | 48 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); |
49 | 49 | ||
50 | /// <summary> | ||
51 | /// Deregister a region with the grid service. | ||
52 | /// </summary> | ||
53 | /// <param name="regionInfo"></param> | ||
54 | /// <returns></returns> | ||
55 | /// <exception cref="System.Exception">Thrown if region deregistration failed</exception> | ||
50 | bool DeregisterRegion(RegionInfo regionInfo); | 56 | bool DeregisterRegion(RegionInfo regionInfo); |
51 | 57 | ||
52 | /// <summary> | 58 | /// <summary> |