https://github.com/dotnetrussell/concurrenttasks
How to run async tasks concurrently in C#
https://github.com/dotnetrussell/concurrenttasks
Last synced: over 1 year ago
JSON representation
How to run async tasks concurrently in C#
- Host: GitHub
- URL: https://github.com/dotnetrussell/concurrenttasks
- Owner: DotNetRussell
- Created: 2019-11-14T00:57:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T13:10:15.000Z (over 6 years ago)
- Last Synced: 2025-01-22T09:12:21.307Z (over 1 year ago)
- Language: C#
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ConcurrentTasks
How to run async tasks concurrently in C#
Application output
```
Executes each async request in order
Starting All Awaits Tests
TaskOne Complete
TaskTwo Complete
TaskThree Complete
TaskFour Complete
TaskFive Complete
All Awaits Test Completed: 5133
Executes each async request concurrently
Starting Task When All Tests
TaskOne Complete
TaskThree Complete
TaskTwo Complete
TaskFive Complete
TaskFour Complete
Task When All Test Completed: 1995
Executes each async request concurrently but doesn't wait for them to finish before continuing
Starting Parallel Tasks Tests
TaskFive Complete
TaskFour Complete
TaskThree Complete
TaskTwo Complete
Task Parallel Tasks Test Completed: 1026
TaskOne Complete
```