Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7924475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T17:46:54+00:00 2026-06-03T17:46:54+00:00

The way I understand how Kue works, I need to specify the type of

  • 0

The way I understand how Kue works, I need to specify the type of job I’m going to get:

jobs.process('email', function(job, done){
    var pending = 5
      , total = pending;

    setInterval(function(){
      job.log('sending!');
      job.progress(total - pending, total);
      --pending || done();
    }, 1000);
  }); 

where ’email’ is the job type. What I’m trying to do is get the next job in the queue regardless of type. Is that doable?

For reference, my object has methods that are named the same thing that the job is so it wont matter what kind of job I pull out, I can always handle it with my job worker.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T17:46:56+00:00Added an answer on June 3, 2026 at 5:46 pm

    What I ultimately did was make several broad classes of tasks, and insert the name of the worker to all as part of the job. The code ended up looking like this:

    jobs.process('social_post', function(job, done){
        var this_worker = factory(job.data.worker);
        this_worker(job,done);
      });
    

    The factory is pretty simple:

    var worker_factory = function(worker_name) {
        switch(worker_name){
            case 'facebook':
                return FacebookWorker;
            case 'social_response':
                return SocialResponder;
    
        };
    };
    

    I’m using the responder queue as overkill for Kue’s already full featured task management.

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

From what I understand there is no way of type-checking the messages send in
I need to parse a POST request, specifically its parameters. The way I understand
Can someone suggest a good way to understand how MPI works?
The way I understand auto reference counting is this: If an object is going
The way I understand how eclipse validation framework works: generate an object with a
The way I understand it, we are encouraged to name Ember instances lowercase: App.mailtruck
Okay this is definitely a n00b question but here goes. The way I understand
I am migrating an app to the High-Replication datastore. The way I understand that
I understand the way Mealy state machines work - the output logic is now
The basic way that I understand Shiro's SecurityUtils.getSubject() to work is that it returns

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.