| 4 | import { BaseBuffer } from './base-buffer'; |
| 5 | |
| 6 | export class BotBuffer extends BaseBuffer { |
| 7 | private batchSize = process.env.BOT_BUFFER_BATCH_SIZE |
| 8 | ? Number.parseInt(process.env.BOT_BUFFER_BATCH_SIZE, 10) |
| 9 | : 1000; |
nothing calls this directly
no outgoing calls
no test coverage detected