Skip to content

Commit 0a1391b

Browse files
committed
docs(guide): add description for moveToWait method
1 parent 4ea91e1 commit 0a1391b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/gitbook/patterns/manually-fetching-jobs.md

+21
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,24 @@ while (1) {
9696
}
9797
}
9898
```
99+
100+
## Rate Limiting
101+
102+
If you want to move a job back to wait because your queue is rate limited.
103+
104+
```typescript
105+
const worker = new Worker('my-queue', null, { connection, prefix });
106+
const token = 'my-token';
107+
await Job.create(queue, 'test', { foo: 'bar' });
108+
const job = (await worker.getNextJob(token)) as Job;
109+
110+
await queue.rateLimit(60000);
111+
await job.moveToWait(token);
112+
```
113+
114+
## Read more:
115+
116+
- 💡 [Get Next Job API Reference](https://api.docs.bullmq.io/classes/v5.Worker.html#getNextJob)
117+
- 💡 [Move To Completed API Reference](https://api.docs.bullmq.io/classes/v5.Job.html#moveToCompleted)
118+
- 💡 [Move To Failed API Reference](https://api.docs.bullmq.io/classes/v5.Job.html#moveToFailed)
119+
- 💡 [Move To Wait API Reference](https://api.docs.bullmq.io/classes/v5.Job.html#moveToWait)

0 commit comments

Comments
 (0)