A
APA
When set to true does this prevent multiple threads from processing this handler simultaneously,i.e. one thread must wait for the completion of the
current thread executing the class before it executes the class? So, if I have 20 requests for this particular handler does each one have to wait
it's turn to execute the class?
If IsReusable is set ot fto alse what is the trade-off (aside from not having to worry about blocking of stepping on the toes of others executing the
same code).
current thread executing the class before it executes the class? So, if I have 20 requests for this particular handler does each one have to wait
it's turn to execute the class?
If IsReusable is set ot fto alse what is the trade-off (aside from not having to worry about blocking of stepping on the toes of others executing the
same code).