(events: IClickhouseEvent[])
| 80 | } |
| 81 | |
| 82 | bulkAdd(events: IClickhouseEvent[]) { |
| 83 | for (const event of events) { |
| 84 | this.add(event); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | add(event: IClickhouseEvent) { |
| 89 | // Event-buffer's add() is synchronous (in-memory push). Measured anyway |