| 3 | import { Queue, QueueOptions } from "./queue" |
| 4 | |
| 5 | export class RedisQueue<T> extends Queue<T> { |
| 6 | private redisBlocking: IORedis |
| 7 | private redisNonBlocking: IORedis |
| 8 | private redisSubscriber: IORedis |
nothing calls this directly
no outgoing calls
no test coverage detected