| 58 | var globalTimerTracker *timerFactory |
| 59 | |
| 60 | type swappableBufferPool struct { |
| 61 | atomic.Pointer[mem.BufferPool] |
| 62 | } |
| 63 | |
| 64 | func (b *swappableBufferPool) Get(length int) *[]byte { |
| 65 | return (*b.Load()).Get(length) |
nothing calls this directly
no outgoing calls
no test coverage detected