December 2019
Intermediate to advanced
346 pages
9h 8m
English
The .NET Framework has some built-in signaling primitives that help us synchronize multiple threads without us having to write lots of synchronization logic. All the synchronization is handled internally by the provided data structures. In this section, let's discuss two very important signaling primitives: CountDownEvent and Barrier:
CountDownEvent: The System.Threading.CountDownEvent class refers to an event that's signaled when its count becomes 0.
Read now
Unlock full access