├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Results.txt ├── ThroughputTest ├── DynamicSemaphoreSlim.cs ├── EntityType.cs ├── Experiment.cs ├── IncreaseInflightReceivesExperiment.cs ├── IncreaseInflightSendsExperiment.cs ├── Metrics.cs ├── MetricsData.cs ├── Observable.cs ├── PerformanceApp.cs ├── PerformanceTask.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ └── launchSettings.json ├── README.md ├── ReceiverTask.cs ├── SenderTask.cs ├── Settings.cs ├── TaskEx.cs ├── ThroughputTest.csproj ├── ThroughputTest.sln └── app.config ├── ThroughputTest_v2 ├── README.md ├── ServiceBusThroughputTest.Common │ ├── ILogger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ServiceBusThroughputTest.Common.csproj ├── ServiceBusThroughputTest │ ├── App.config │ ├── Metrics.cs │ ├── MetricsData.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceBusThroughputTest.csproj │ └── ServiceBusThroughputTest.sln └── ServiceBusThroughputTestLib │ ├── Extensions.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Receiver.cs │ ├── Sender.cs │ └── ServiceBusThroughputTestLib.csproj └── service-bus-dotnet-msg.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/README.md -------------------------------------------------------------------------------- /Results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/Results.txt -------------------------------------------------------------------------------- /ThroughputTest/DynamicSemaphoreSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/DynamicSemaphoreSlim.cs -------------------------------------------------------------------------------- /ThroughputTest/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/EntityType.cs -------------------------------------------------------------------------------- /ThroughputTest/Experiment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Experiment.cs -------------------------------------------------------------------------------- /ThroughputTest/IncreaseInflightReceivesExperiment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/IncreaseInflightReceivesExperiment.cs -------------------------------------------------------------------------------- /ThroughputTest/IncreaseInflightSendsExperiment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/IncreaseInflightSendsExperiment.cs -------------------------------------------------------------------------------- /ThroughputTest/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Metrics.cs -------------------------------------------------------------------------------- /ThroughputTest/MetricsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/MetricsData.cs -------------------------------------------------------------------------------- /ThroughputTest/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Observable.cs -------------------------------------------------------------------------------- /ThroughputTest/PerformanceApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/PerformanceApp.cs -------------------------------------------------------------------------------- /ThroughputTest/PerformanceTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/PerformanceTask.cs -------------------------------------------------------------------------------- /ThroughputTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Program.cs -------------------------------------------------------------------------------- /ThroughputTest/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /ThroughputTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /ThroughputTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/README.md -------------------------------------------------------------------------------- /ThroughputTest/ReceiverTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/ReceiverTask.cs -------------------------------------------------------------------------------- /ThroughputTest/SenderTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/SenderTask.cs -------------------------------------------------------------------------------- /ThroughputTest/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/Settings.cs -------------------------------------------------------------------------------- /ThroughputTest/TaskEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/TaskEx.cs -------------------------------------------------------------------------------- /ThroughputTest/ThroughputTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/ThroughputTest.csproj -------------------------------------------------------------------------------- /ThroughputTest/ThroughputTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/ThroughputTest.sln -------------------------------------------------------------------------------- /ThroughputTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest/app.config -------------------------------------------------------------------------------- /ThroughputTest_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/README.md -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest.Common/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest.Common/ILogger.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest.Common/ServiceBusThroughputTest.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest.Common/ServiceBusThroughputTest.Common.csproj -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/App.config -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/Metrics.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/MetricsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/MetricsData.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/Program.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/ServiceBusThroughputTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/ServiceBusThroughputTest.csproj -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTest/ServiceBusThroughputTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTest/ServiceBusThroughputTest.sln -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTestLib/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTestLib/Extensions.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTestLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTestLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTestLib/Receiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTestLib/Receiver.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTestLib/Sender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTestLib/Sender.cs -------------------------------------------------------------------------------- /ThroughputTest_v2/ServiceBusThroughputTestLib/ServiceBusThroughputTestLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/ThroughputTest_v2/ServiceBusThroughputTestLib/ServiceBusThroughputTestLib.csproj -------------------------------------------------------------------------------- /service-bus-dotnet-msg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/service-bus-dotnet-messaging-performance/HEAD/service-bus-dotnet-msg.yml --------------------------------------------------------------------------------