mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* refactor: make startup a template method
This commit is contained in:
@@ -44,6 +44,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
private static readonly log4net.ILog m_log
|
||||
= log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
/// <summary>
|
||||
/// Is throttling enabled at all?
|
||||
/// </summary>
|
||||
private bool m_enabled = true;
|
||||
|
||||
private OpenSim.Framework.BlockingQueue<LLQueItem> SendQueue;
|
||||
|
||||
@@ -71,10 +71,8 @@ namespace OpenSim.Region.ClientStack
|
||||
get { return m_sceneManager; }
|
||||
}
|
||||
|
||||
public override void Startup()
|
||||
protected override void StartupSpecific()
|
||||
{
|
||||
base.Startup();
|
||||
|
||||
m_storageManager = CreateStorageManager(m_storageConnectionString, m_estateConnectionString);
|
||||
|
||||
m_clientStackManager = CreateClientStackManager();
|
||||
|
||||
Reference in New Issue
Block a user