Click here to Skip to main content
15,881,413 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have multiple clients, and I'm trying to send to each and every one of them some messages, using async callbacks (when a message is sent, next message is dequeued).

I wanted to ask if when using Async callbacks, are they using the thread pool? or exceeding it? or anything like that.

Can I simply execute my Async callbacks without worrying, would they be executed like every other queued thread in the thread pool?
Posted
Updated 25-Oct-11 21:52pm
v2

1 solution

If you mean by async callbacks the asynchronous programming model (BeginInvoke, EndInvoke etc.) then the threadpool is generally used.

http://msdn.microsoft.com/en-us/library/ms228963.aspx[^]
 
Share this answer
 
Comments
ShacharK 26-Oct-11 4:27am    
I mean the socket's async receive and send...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900