Get gets a value from the pool or returns nil if the pool is empty.
()
| 229 | type BufferPool interface { |
| 230 | // Get gets a value from the pool or returns nil if the pool is empty. |
| 231 | Get() interface{} |
| 232 | // Put adds a value to the pool. |
| 233 | Put(interface{}) |
| 234 | } |
no outgoing calls