https://github.com/guildofcalamity/producerconsumer
A producer/consumer demonstration using various techniques.
https://github.com/guildofcalamity/producerconsumer
console-application csharp multithreading
Last synced: 3 months ago
JSON representation
A producer/consumer demonstration using various techniques.
- Host: GitHub
- URL: https://github.com/guildofcalamity/producerconsumer
- Owner: GuildOfCalamity
- License: mit
- Created: 2023-12-01T23:51:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-26T18:11:21.000Z (about 2 years ago)
- Last Synced: 2025-01-11T05:28:27.186Z (12 months ago)
- Topics: console-application, csharp, multithreading
- Language: C#
- Homepage:
- Size: 594 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Support: Support/ConsoleExtras.cs
Awesome Lists containing this project
README
## 💻 Console - Producer/Consumer Demo
A producer/consumer demonstration.
These main features are implemented:
- System.Collections.Concurrent.BlockingCollection
- System.Collections.Concurrent.ConcurrentQueue
- System.Collections.Concurrent.ConcurrentStack
- System.Threading.Channels.Channel
- ThreadPool.RegisterWaitForSingleObject
