10-27-2021 03:56 AM
Hello,
I have a question regarding the execution of class methods.
Lets say i have Class "A" with a method called "Do something" which is set default to "Non reentrant execution"
and I instantiate 10 objects, in different threads which run asynchronously.
If i call the method "Do something", is this running in parallel? Or do I have to use the "reentrant execution" option of the method in order to get parallel execution.
Thanks!
Solved! Go to Solution.
10-27-2021 06:06 AM
Method has to be reentrant if you want to execute multiple instances of it simultaneously!
10-27-2021 06:14 AM
Thanks!