node-resque
Advanced tools
Comparing version 9.3.6 to 9.3.7
@@ -51,3 +51,3 @@ import { EventEmitter } from "events"; | ||
*/ | ||
enqueueAt(timestamp: number, q: string, func: string, args?: Array<any>, suppressDuplicateTaskError?: boolean): Promise<void>; | ||
enqueueAt(timestamp: number, q: string, func: string, args?: Array<any>, suppressDuplicateTaskError?: boolean): Promise<boolean>; | ||
/** | ||
@@ -58,3 +58,3 @@ * - In ms, the number of ms to delay before this job is able to start being worked on. | ||
*/ | ||
enqueueIn(time: number, q: string, func: string, args?: Array<any>, suppressDuplicateTaskError?: boolean): Promise<void>; | ||
enqueueIn(time: number, q: string, func: string, args?: Array<any>, suppressDuplicateTaskError?: boolean): Promise<boolean>; | ||
/** | ||
@@ -61,0 +61,0 @@ * - queues is an Array with the names of all your queues |
@@ -94,2 +94,3 @@ "use strict"; | ||
}); | ||
return true; | ||
} | ||
@@ -96,0 +97,0 @@ /** |
@@ -6,3 +6,3 @@ { | ||
"license": "Apache-2.0", | ||
"version": "9.3.6", | ||
"version": "9.3.7", | ||
"homepage": "http://github.com/actionhero/node-resque", | ||
@@ -9,0 +9,0 @@ "repository": { |
@@ -154,2 +154,4 @@ import { EventEmitter } from "events"; | ||
}); | ||
return true; | ||
} | ||
@@ -156,0 +158,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
705180
9128