forked from OptimalBits/bull
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OptimalBits#829 from vhf/doc-fix-1
Fix reference interface name
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ The optional ```url``` argument, allows to specify a redis connection string suc | |
```redis://[email protected]:1234``` | ||
|
||
```typescript | ||
interface QueueOpts{ | ||
interface QueueOptions { | ||
limiter?: RateLimiter; | ||
redis?: RedisOpts; | ||
prefix?: string = 'bull'; // prefix for all queue keys. | ||
|
@@ -117,7 +117,7 @@ __Warning:__ Do not override these advanced settings unless you understand the i | |
* Consider these as overloaded functions. Since method overloading doesn't exist in javacript | ||
* bull recognizes the desired function call by checking the parameters' types. Make sure you | ||
* comply with one of the below defined patterns. | ||
* | ||
* | ||
* Note: Concurrency defaults to 1 if not specified. | ||
*/ | ||
process(processor: (job, done?) => Promise<any> | string) | ||
|