Suppose I run 3 threads in a C # application: T1, T2, and T3 and issue Run calls for each.
Typically, a processor will schedule threads cyclically (one processor and all threads have the same priority).
However, suppose Thread T1 issues a web service lock call.
Will it be unloaded immediately or after the completion of its temporary fragment?
As a rule, issuing a network call to a network (or any other call) causes the thread to be in a blocked state?
Vikas source share