Added property to make for more flexible testing.

cpu-performance
Diva Canto 2013-07-11 14:23:37 -07:00
parent 51d106cff8
commit ee51a9f9c9
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ namespace OpenSim.Services.Connectors
// Maps: Asset ID -> Handlers which will be called when the asset has been loaded
private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>();
public int MaxAssetRequestConcurrency
{
get { return m_maxAssetRequestConcurrency; }
set { m_maxAssetRequestConcurrency = value; }
}
public AssetServicesConnector()
{