Runs the JavaScript function callback on the thread specified by id.
Must be used with extreme caution due to the thread potentially being
interrupted in non-reentrant code. For example, you could be interrupting
it while it's in the middle of some delicate code, holding a specific
non-recursive lock, which you then try to implicitly acquire again when
you call some function.
Runs the JavaScript function
callbackon the thread specified byid. Must be used with extreme caution due to the thread potentially being interrupted in non-reentrant code. For example, you could be interrupting it while it's in the middle of some delicate code, holding a specific non-recursive lock, which you then try to implicitly acquire again when you call some function.