| 70 | } |
| 71 | |
| 72 | export class SessionBuffer extends BaseBuffer { |
| 73 | private batchSize = process.env.SESSION_BUFFER_BATCH_SIZE |
| 74 | ? Number.parseInt(process.env.SESSION_BUFFER_BATCH_SIZE, 10) |
| 75 | : 1000; |
nothing calls this directly
no outgoing calls
no test coverage detected