Razan Paul Blog

Explaining thoughts and findings is a great way to learn

Browse by Tags

All Tags » Multithreading (RSS)
Emulating Synchronous Web Service Call in Silverlight 3
As we know, only option for web service calling in Silverlight is asynchronous and Silverlight framework does not provide any API for synchronous call. In this post, i will show how we can emulate synchronous web service call using the default asynchronous...
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...
Testing server whether it is reachable or not in c#
In client server development, we need this feature in many situations including: When client starts before server, it should periodically check whether server is UP or not. As soon as it gets server is up, it will connect with it to do its own business...
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...
More Posts