Paul blog

Explaining thoughts and findings is a great way to learn

Browse by Tags

All Tags » Multithreading (RSS)
JavaScript VS C# threading model
We were developing an application, which emulates the functionality of a real time device. In this application, we need real time event; we pool the service by a certain time interval and need to send some key presses. Moreover, we have a large number...
A scheduler to process a list of requests by a specific number of threads in c#.
This scheduler is not a time-based scheduler. It schedules the user tasks according to scheduling policy; scheduling policy is First Come First Serve. It performs the following tasks:       It decides which request to execute...
Some thoughts about how we can make a thread safe class library
What is Thread safety? Thread safety is making sure that shared data (Global/static) of a program is modified by only one thread at a time without any deadlock , starvation , race condition so that program behaves correctly when its methods are called...
Posted: 04-04-2009 1:04 AM by Razan | with no comments
Filed under: ,