Skip to content

letmemad/react-native-queuely

Repository files navigation

react-native-queuely

A queue manager to react-native projects

Installation

npm install react-native-queuely

Usage

import queuely, {Worker} from 'react-native-queuely';

// CREATE THE WORKER
const DemoWorker = new Worker("demo", async (payload) => {
 // DO SOMETHING WITH PAYLOAD;
});

// DEFINE THE WORKERS
queuely.configure({workers: [DemoWorker]});

// ADD JOBS TO THE WORKER
queue.addJob("demo", {
  name: "steve",
  age: 20,
});

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors