Renamed splitID in Scene and added comments on usage

0.6.5-rc1
Johan Berntsson 2009-04-15 04:07:41 +00:00
parent e3d4814971
commit 068127bf57
1 changed files with 8 additions and 1 deletions

View File

@ -56,7 +56,14 @@ namespace OpenSim.Region.Framework.Scenes
{
public delegate void SynchronizeSceneHandler(Scene scene);
public SynchronizeSceneHandler SynchronizeScene = null;
public int splitID = 0;
/* Used by the loadbalancer plugin on GForge */
protected int m_splitRegionID = 0;
public int SplitRegionID
{
get { return m_splitRegionID; }
set { m_splitRegionID = value; }
}
private const long DEFAULT_MIN_TIME_FOR_PERSISTENCE = 60L;
private const long DEFAULT_MAX_TIME_FOR_PERSISTENCE = 600L;