Giter VIP home page Giter VIP logo

Comments (6)

lpinca avatar lpinca commented on May 30, 2024

That's because this is what happens under the hood.

queueMicrotask(function () {
  console.log('received: something1');
  Promise.resolve().then(() => {
    console.log('microtask something1');
    return Promise.resolve().then(() => {
      console.log('microtask-nested something1');
    });
  });
  queueMicrotask(function () {
    console.log('received: something2');
    Promise.resolve().then(() => {
      console.log('microtask something2');
      return Promise.resolve().then(() => {
        console.log('microtask-nested something2');
      });
    });
  });
});

We can get the expected behavior by resuming the parser when the microtask queue drains, for example by using setImmediate() instead of queueMicrotask(), but in that case we don't have one event per microtask but one event per loop iteration.

from ws.

OrKoN avatar OrKoN commented on May 30, 2024

The WebSocket spec defines one event to be dispatched per task and not per microtask so setImmediate sounds appropriate. I am not sure if that degrades the performance though.

from ws.

lpinca avatar lpinca commented on May 30, 2024

Isn't a task in that context/spec a microtask?

I am not sure if that degrades the performance though.

It almost certainly does but there is the allowSynchronousEvents option now. Anyway setImmediate() might also have unintended side effects. I have to think about it.

from ws.

OrKoN avatar OrKoN commented on May 30, 2024

It is a task but it is on a different queue, a microtask queue, in the html spec. The spec also says that a microtask queue is not a task queue so I am not sure. I think people also refer to tasks/global tasks as macro tasks as opposed to micro tasks.

from ws.

OrKoN avatar OrKoN commented on May 30, 2024

https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task definitely puts a task on a task queue and not a microtask queue though.

from ws.

lpinca avatar lpinca commented on May 30, 2024

It looks like browsers do not dispatch one event per microtask so I guess I misunderstood the spec in #2160.

from ws.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.