dotnet remoting:
I have a singleton hosted in IIS adn have a question regaring threading and
how methods are handled on concurrent calls.
Note: all of the data used is from within the method itself (or pulled from
a database from within the method )
Say the method is called concurrenetly ( or at least very minute
millisecondas apart from one another ) Is it poosible for the second calls
method parameteres to overwrite the first calls parameteres so that the
first one will now be using the second calls paramaters. ( this is assuming
the first call has not finished executing the method when the second call is
made ).
Thanks!
Ron