ObjectPoolStats constructor

ObjectPoolStats({
  1. required int logEntryPoolSize,
  2. required int logEntryAllocations,
  3. required int logEntryReuses,
  4. required int logEventPoolSize,
  5. required int logEventAllocations,
  6. required int logEventReuses,
  7. required int stringBufferPoolSize,
  8. required int stringBufferAllocations,
  9. required int stringBufferReuses,
  10. required int contextMapPoolSize,
  11. required int contextMapAllocations,
  12. required int contextMapReuses,
})

Implementation

ObjectPoolStats({
  required this.logEntryPoolSize,
  required this.logEntryAllocations,
  required this.logEntryReuses,
  required this.logEventPoolSize,
  required this.logEventAllocations,
  required this.logEventReuses,
  required this.stringBufferPoolSize,
  required this.stringBufferAllocations,
  required this.stringBufferReuses,
  required this.contextMapPoolSize,
  required this.contextMapAllocations,
  required this.contextMapReuses,
});