Acquire must return a new T from a pool.
(ctx Context)
| 38 | ContextPool[T any] interface { |
| 39 | // Acquire must return a new T from a pool. |
| 40 | Acquire(ctx Context) T |
| 41 | // Release must put the T back to the pool. |
| 42 | Release(T) |
| 43 | } |
no outgoing calls
no test coverage detected