I have a web service, which process to open new account. I want to limit the
number of request to process for opening new account. For example, lets say..
I got 10 account opening request to the web service and I just to process
three requests and want rest seven to wait until first three will get
processed.
In other words I want to use thread pooling without using Threadpool object
(because it depends on server). Can someone pass me some samples or idea to
manage threads?
number of request to process for opening new account. For example, lets say..
I got 10 account opening request to the web service and I just to process
three requests and want rest seven to wait until first three will get
processed.
In other words I want to use thread pooling without using Threadpool object
(because it depends on server). Can someone pass me some samples or idea to
manage threads?