celery-client

0.4.2 • Public • Published

celery-client

NPM version Downloads

A Celery client for node.

Supported Brokers and Backends.

  • Redis

Quick Example:

var celery = require('celery-client');

var broker  = new celery.RedisHandler('redis://:password@localhost:6379/0');
var backend = new celery.RedisHandler('redis://:password@localhost:6379/1');
var celeryClient = new celery.Client(broker, backend);

var args   = [1, 2, 3];
var kwargs = {'key': 'value'};
var taskOptions = {
  eta      : Date.now() + 3000,
  retries  : 3,
  timeLimit: 5,
}
celeryClient.putTask('your-celery-project.task', args, kwargs, taskOptions,
  function(err, taskId) {
    console.log('Task >', taskId);
  },
  function(err, result) {
    console.log('Result >', result);
    process.exit();
  }
);

Task option list

  • id
    • Task ID
  • eta
    • Task ETA
  • expires
    • Task expires
  • retries
    • Task retry times
  • expires
    • Task expires
  • timeLimit
    • Task time limit (in seconds)
  • softTimeLimit
    • Task time limit (soft, in seconds)
  • origin
    • Task sender name
  • priority
    • Task priority
  • queue
    • Target queue

Install:

npm install celery-client

TODO

  • RabbitMQ support

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i celery-client

Weekly Downloads

15

Version

0.4.2

License

MIT

Unpacked Size

15.2 kB

Total Files

5

Last publish

Collaborators

  • pastgift