Socket
Socket
Sign inDemoInstall

celery-client

Package Overview
Dependencies
8
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    celery-client

A client for Celery


Version published
Weekly downloads
14
decreased by-12.5%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 06 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc