()
| 93 | } |
| 94 | |
| 95 | argsKey() { |
| 96 | if (!this.args || this.args.length === 0) { |
| 97 | return ""; |
| 98 | } |
| 99 | return this.args |
| 100 | .map(function (elem) { |
| 101 | return typeof elem === "object" ? JSON.stringify(elem) : elem; |
| 102 | }) |
| 103 | .join("-"); |
| 104 | } |
| 105 | |
| 106 | retryKey() { |
| 107 | return this.queueObject.connection |
no outgoing calls
no test coverage detected