(execAsPipeline = false)
| 230 | } |
| 231 | |
| 232 | async exec<T extends MultiReply = MULTI_REPLY['GENERIC']>(execAsPipeline = false): Promise<MultiReplyType<T, REPLIES>> { |
| 233 | if (execAsPipeline) return this.execAsPipeline<T>(); |
| 234 | |
| 235 | return this.#multi.transformReplies( |
| 236 | await this.#executeMulti(this.#multi.queue, this.#selectedDB) |
| 237 | ) as MultiReplyType<T, REPLIES>; |
| 238 | } |
| 239 | |
| 240 | EXEC = this.exec; |
| 241 |
no test coverage detected