Get the local inner simulation service object to the handler so that there is no possibility of cascading requests when failures happen.

This commit is contained in:
Diva Canto
2010-03-15 20:32:36 -07:00
parent 76106e39d9
commit 45ef3e9987
5 changed files with 17 additions and 0 deletions

View File

@@ -166,6 +166,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
return m_sceneList[0];
}
public ISimulationService GetInnerService()
{
return this;
}
/**
* Agent-related communications
*/

View File

@@ -156,6 +156,11 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation
return m_localBackend.GetScene(handle);
}
public ISimulationService GetInnerService()
{
return m_localBackend;
}
/**
* Agent-related communications
*/