multithreading - window.open force new JavaScript thread -


does know if there way force new javascript thread new window?

i have extjs application render steps slaughtering user interaction. can't toss whole ext application right now, i've devised way make use of localstorage manage passing events between browser windows , replacing high activity data entry portion of application angular2 app spawned in new window ext app.

while things performing wonderfully on angular2 side of things, when parent window ext application hangs during render step, window angular2 application hangs causing users lose keystrokes (which bad).

ideally being able divorce angular2 app's javascript thread ext 1 do.

does know if possible?

javascript not threaded language. but, there alternatives use in order run functions without blocking ui. wide-spread solution make use of windowtimer functions.

read further upon here: how can create asynchronous function in javascript?


Comments