About 22,000 results
Open links in new tab
  1. Message Queue vs Task Queue difference - Stack Overflow

    Apr 9, 2012 · The difference between the message queue and the micro-task queue (such as Promises is) the micro-task queue has a higher priority than the message queue, which means that Promise …

  2. Best way in .NET to manage queue of tasks on a separate (single) thread

    Aug 31, 2022 · What I am trying to do is manage a queue of "work" on a separate thread, but in such a way that only one item is processed at a time. I want to post work on this thread and it doesn't need …

  3. Difference between microtask and macrotask within an event loop …

    Sep 18, 2014 · The difference between the task queue and the microtask queue is simple but very important: When executing tasks from the task queue, the runtime executes each task that is in the …

  4. javascript - JS async / await tasks queue - Stack Overflow

    Nov 29, 2018 · 121 You could use a Queue data structure as your base and add special behavior in a child class. a Queue has a well known interface of two methods enqueue() (add new item to end) …

  5. c# - awaitable Task based queue - Stack Overflow

    Oct 23, 2011 · Awaiting both queue.DequeueAsync() and queue.Completion with Task.WhenAny is a clever trick, but it feels like a hack to overcome the shortcomings of a poor API design.

  6. Understanding async JS with promises, task and job queue

    Aug 5, 2020 · Now when I started reading about promises, I understood that they have higher priority than regular async code such as timeout, interval, eventlistener and instead will get placed in the job …

  7. Python - What is queue.task_done () used for? - Stack Overflow

    The queue module has bad name choices that make it sound like a general-purpose queue library, when it's really a thread communication library. It'd be weird for a general-purpose queue to have …

  8. Message Queue VS Task Queue architecture - Stack Overflow

    Feb 1, 2023 · Message Queue VS Task Queue architecture Asked 2 years, 8 months ago Modified 1 year, 4 months ago Viewed 960 times

  9. Why does an event loop have one or more task queues?

    Mar 16, 2023 · For each event loop, every task source must be associated with a specific task queue. For example, a user agent could have one task queue for mouse and key events (to which the user …

  10. Retrieve list of tasks in a queue in Celery - Stack Overflow

    How can I retrieve a list of tasks in a queue that are yet to be processed?