You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One would expect that all 3 operations will be run on a separate thread. However, currently op1 and op2 will be executed on current thread, only op3 will be executed on a separate thread.
BusyWorker should not allow writing this type of code.
Consider this code
busyWorker.doTask("myTask") { op1() op2() op3() }
One would expect that all 3 operations will be run on a separate thread. However, currently
op1
andop2
will be executed on current thread, onlyop3
will be executed on a separate thread.BusyWorker
should not allow writing this type of code.To fix this user has to write:
The text was updated successfully, but these errors were encountered: