F
Frank Rizzo
Hello,
I have a class with all static methods that is called by multiple
threads. I was wondering what effect that has on the competing threads.
Does Thread2 have to wait until Thread1 is done with the
StaticClass.Method1 before it can use it?
What if I removed static methods and made all the threads instantiate
its own copy of the class? Would that remove the waiting contention?
Thanks.
I have a class with all static methods that is called by multiple
threads. I was wondering what effect that has on the competing threads.
Does Thread2 have to wait until Thread1 is done with the
StaticClass.Method1 before it can use it?
What if I removed static methods and made all the threads instantiate
its own copy of the class? Would that remove the waiting contention?
Thanks.