You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ Run scheduled tasks with Steve Jobs, the simple jobs queue made just for Meteor.
8
8
9
9
- Jobs run on one server at a time
10
10
- Jobs run predictably and consecutively
11
-
- Jobs and their history are stored in MongoDB
11
+
- Jobs, their history and returned data are stored in MongoDB
12
12
- Failed jobs are retried on server restart
13
13
- No third party dependencies
14
14
15
-
**The new 3.1 features repeating jobsand more improvements.** It can run hundreds of jobs in seconds with minimal CPU impact, making it a reasonable choice for many applications. To get started, check out the <ahref="https://github.com/msavin/SteveJobs..meteor.jobs.scheduler.queue.background.tasks/blob/master/DOCUMENTATION.md">**documentation**</a> and the <ahref="#quick-start">**quick start**</a> below.
15
+
**The new 4.0 features repeating jobs, async support and more!** It can run hundreds of jobs in seconds with minimal CPU impact, making it a reasonable choice for many applications. To get started, check out the <ahref="https://github.com/msavin/SteveJobs..meteor.jobs.scheduler.queue.background.tasks/blob/master/DOCUMENTATION.md">**documentation**</a> and the <ahref="#quick-start">**quick start**</a> below.
16
16
17
17
## Developer Friendly GUI and API
18
18
@@ -43,21 +43,22 @@ Then, write your background jobs like you would write your methods:
43
43
```javascript
44
44
Jobs.register({
45
45
"sendReminder":function (to, message) {
46
-
var instance =this;
46
+
constinstance=this;
47
47
48
-
var call =HTTP.put("http://www.magic.com/sendEmail", {
0 commit comments