redis-smq-common 1.0.0-rc.1 → 1.0.0-rc.2
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/CHANGELOG.md +4 -0
- package/dist/src/worker/worker.d.ts +1 -0
- package/dist/src/worker/worker.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,7 @@ export declare abstract class Worker<T extends TWorkerParameters = TWorkerParame
|
|
|
5
5
|
private readonly powerManager;
|
|
6
6
|
private readonly managed;
|
|
7
7
|
protected readonly redisClient: RedisClient;
|
|
8
|
+
protected readonly params: T;
|
|
8
9
|
constructor(redisClient: RedisClient, params: T, managed: boolean);
|
|
9
10
|
private getTicker;
|
|
10
11
|
private getPowerManager;
|
package/package.json
CHANGED