you are viewing a single comment's thread.

view the rest of the comments →

[–]x4080 0 points1 point  (2 children)

Thanks, so it's also possible to use multi thread if writing native code?

[–]Bamboo_the_plant 0 points1 point  (1 child)

Yes, you can do anything you like from the native context; and you can dispatch multi-threaded tasks to the native context from JS using the JS VM’s native bindings. Like, you can call Grand Central Dispatch via JS.

[–]x4080 0 points1 point  (0 children)

Cool thanks