()
| 71 | private queueKey = 'event_buffer:queue'; |
| 72 | |
| 73 | constructor() { |
| 74 | super({ |
| 75 | name: 'event', |
| 76 | onFlush: async () => { |
| 77 | await this.processBuffer(); |
| 78 | }, |
| 79 | }); |
| 80 | } |
| 81 | |
| 82 | bulkAdd(events: IClickhouseEvent[]) { |
| 83 | for (const event of events) { |
nothing calls this directly
no test coverage detected