diff options
author | Diva Canto | 2013-07-11 14:23:37 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-11 14:23:37 -0700 |
commit | ee51a9f9c902e1587023b900438331c086680b30 (patch) | |
tree | 1ea0963e3976061ef12205fd0a3ea227e7b29411 /OpenSim/Services | |
parent | Added a test for the asset service (diff) | |
download | opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.zip opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.gz opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.bz2 opensim-SC_OLD-ee51a9f9c902e1587023b900438331c086680b30.tar.xz |
Added property to make for more flexible testing.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs index 7f7f251..8b04d7f 100644 --- a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs +++ b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs | |||
@@ -55,6 +55,11 @@ namespace OpenSim.Services.Connectors | |||
55 | // Maps: Asset ID -> Handlers which will be called when the asset has been loaded | 55 | // Maps: Asset ID -> Handlers which will be called when the asset has been loaded |
56 | private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>(); | 56 | private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>(); |
57 | 57 | ||
58 | public int MaxAssetRequestConcurrency | ||
59 | { | ||
60 | get { return m_maxAssetRequestConcurrency; } | ||
61 | set { m_maxAssetRequestConcurrency = value; } | ||
62 | } | ||
58 | 63 | ||
59 | public AssetServicesConnector() | 64 | public AssetServicesConnector() |
60 | { | 65 | { |