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

    Apr 9, 2012 · And think of task queue as an implementation of the message-queue which helps achieve task-orchestration - a wrapper / a framework over message-queues to achieve a …

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

    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 …

  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 …

  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 …

  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 …

  7. 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

  8. 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 …

  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 …

  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?