bullmq 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/dist/cjs/classes/worker.d.ts +1 -1
- package/dist/esm/classes/worker.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -102,11 +102,19 @@ Some notable organizations using BullMQ:
|
|
102
102
|
/>
|
103
103
|
</a>
|
104
104
|
</td>
|
105
|
+
</td>
|
106
|
+
<td valign="center">
|
107
|
+
<a href="https://www.nocodb.com">
|
108
|
+
<img
|
109
|
+
src="https://www.nocodb.com/brand/logo-text.png"
|
110
|
+
width="150"
|
111
|
+
alt="NoCodeDB"
|
112
|
+
/>
|
113
|
+
</a>
|
114
|
+
</td>
|
105
115
|
</tr>
|
106
116
|
</table>
|
107
117
|
|
108
|
-
|
109
|
-
|
110
118
|
# The gist
|
111
119
|
|
112
120
|
Install:
|
@@ -48,7 +48,7 @@ export interface WorkerListener<DataType = any, ResultType = any, NameType exten
|
|
48
48
|
*
|
49
49
|
* This event is triggered when a job has thrown an exception.
|
50
50
|
*/
|
51
|
-
failed: (job: Job<DataType, ResultType, NameType
|
51
|
+
failed: (job: Job<DataType, ResultType, NameType> | undefined, error: Error, prev: string) => void;
|
52
52
|
/**
|
53
53
|
* Listen to 'paused' event.
|
54
54
|
*
|
@@ -48,7 +48,7 @@ export interface WorkerListener<DataType = any, ResultType = any, NameType exten
|
|
48
48
|
*
|
49
49
|
* This event is triggered when a job has thrown an exception.
|
50
50
|
*/
|
51
|
-
failed: (job: Job<DataType, ResultType, NameType
|
51
|
+
failed: (job: Job<DataType, ResultType, NameType> | undefined, error: Error, prev: string) => void;
|
52
52
|
/**
|
53
53
|
* Listen to 'paused' event.
|
54
54
|
*
|