https://github.com/yamadapc/mongoose-schedule
Safely schedule mongoose methods with kue jobs and cron.
https://github.com/yamadapc/mongoose-schedule
Last synced: 2 months ago
JSON representation
Safely schedule mongoose methods with kue jobs and cron.
- Host: GitHub
- URL: https://github.com/yamadapc/mongoose-schedule
- Owner: yamadapc
- License: mit
- Created: 2014-04-12T04:53:33.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-04-03T16:51:56.000Z (about 9 years ago)
- Last Synced: 2025-03-18T15:16:11.373Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mongoose-schedule
=================
[](https://travis-ci.org/yamadapc/mongoose-schedule)
[](https://david-dm.org/yamadapc/mongoose-schedule)
[](https://david-dm.org/yamadapc/mongoose-schedule#info=devDependencies)
[](https://github.com/igrigorik/ga-beacon)
- - -A Kue Job to schedule a method to be called on some mongoose document or model,
depending on whether a document id is passed.## `.job`
Schedules a method to be called on some mongoose document or model, depending
on whether a document id is passed at `job.data.doc_id`.### Example:
```javascript
var job = {
data: {
model: 'Something',
method: 'remove',
execution_date: new Date(20, 1, 2014),
args: [{ _id: some_id }, { active: false }]
}
};mongooseSchedule.job(job, function() {});
```This will execute the `remove` method on the `Something` model with the
defined arguments.### Params:
| Type | Name | Description |
|--------------|---------------------------|--------------------------------------------|
| **Object** | *job* | A kue job. |
| **Function** | *done* | A callback function. |
| **Object** | *job.data* | The job's input data. |
| **String** | *job.data.model* | The model to schedule a static/method on. |
| **String** | *job.data.method* | The name of the method to schedule. |
| **Date** | *job.data.execution_date* | When to execute the method. |
| **String** | *[job.data.doc_id]* | The target document's id. If provided, the |
| **Array** | *[job.data.args]* | The arguments to pass into the method. |## License
Copyright (c) 2014 Pedro Yamada. Licensed under the MIT license.