.Net Remoting Return Values ​​Discrimination between calls from different threads

I inherited a mid-tier system with some multi-thread problems.
Two different threads executing the same method of the same class instance make the same calls on the .Net Remoting server ...

Does the client side proxy know how to redirect the return values ​​from the remote server to the correct stream? Are separate client side proxies created for calls from each thread, even though they are called from the same instance? Does the client side proxy (or proxy) know how to redirect return values ​​from the remote server to the correct stream?

0


source to share


1 answer


Remoting automatically redirects the return from each call to the calling thread. You don't need to worry about this outside of your usual multithreading problems. Just treat them like regular method calls.



Do you have a specific problem or are you just worried?

0


source







All Articles