()
| 11 | private readonly redisKey = 'bot-events-buffer'; |
| 12 | private redis: Redis; |
| 13 | constructor() { |
| 14 | super({ |
| 15 | name: 'bot', |
| 16 | onFlush: async () => { |
| 17 | await this.processBuffer(); |
| 18 | }, |
| 19 | }); |
| 20 | this.redis = getRedisCache(); |
| 21 | } |
| 22 | |
| 23 | protected getRedisListKey(): string { |
| 24 | return this.redisKey; |
nothing calls this directly
no test coverage detected