Run microtasks after calling JS
This commit is contained in:
parent
42c66b2f00
commit
06e987db04
|
@ -85,6 +85,9 @@ void Main(Local<Object> exports) {
|
||||||
/* I guess we store this statically */
|
/* I guess we store this statically */
|
||||||
isolate = exports->GetIsolate();
|
isolate = exports->GetIsolate();
|
||||||
|
|
||||||
|
/* We want this */
|
||||||
|
isolate->SetMicrotasksPolicy(MicrotasksPolicy::kAuto);
|
||||||
|
|
||||||
/* Register our own nextTick handlers */
|
/* Register our own nextTick handlers */
|
||||||
uWS::Loop::defaultLoop()->setPostHandler([](uWS::Loop *) {
|
uWS::Loop::defaultLoop()->setPostHandler([](uWS::Loop *) {
|
||||||
processNextTickQueueImpl(isolate);
|
processNextTickQueueImpl(isolate);
|
||||||
|
|
Loading…
Reference in New Issue