Darien Raymond hace 9 años
padre
commit
5f6366d2fa
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      common/alloc/buffer_pool.go

+ 1 - 0
common/alloc/buffer_pool.go

@@ -6,6 +6,7 @@ import (
 	"sync"
 )
 
+// Pool provides functionality to generate and recycle buffers on demand.
 type Pool interface {
 	Allocate() *Buffer
 	Free(*Buffer)