➡️ I'm Your Guide to Becoming a .NET Pro! 👋 Posts about C# & .NET
➡️ Design Patterns Simplified e-book: https://t.co/RQgDHXE5Tg
Sep 20, 2023 • 6 tweets • 3 min read
What is a Thread Pool Starvation?
And how to avoid it?
Continue reading 🧵
#Dotnet
Thread Pool Starvation occurs when all the threads in the thread pool are busy doing work and are unable to service new requests.
This usually happens when you have long-running or blocking operations taking up the thread pool threads.
Sep 14, 2023 • 7 tweets • 3 min read
Bring me a pizza, please 🍕
This is a Command Pattern. Let's simplify it. 🧵
The Command design pattern is a behavioral design pattern that turns a request into a stand-alone object that contains information about the request.
#Dotnet
In a restaurant, a customer gives an order for a particular dish to a waiter. The waiter then passes the order to the kitchen staff, where the dish gets prepared.
May 12, 2023 • 5 tweets • 2 min read
Adapter Design Pattern - Simplifed💡
Definition:
The adapter pattern converts the interface of a class into another interface clients expect. The adapter lets classes work together that couldn’t otherwise because of incompatible interfaces.
I try to have a deep understanding of project goals, functionality, and user expectations. Therefore, I believe that clear communication at this stage lays the foundation for a successful outcome.