Darien Raymond 9 роки тому
батько
коміт
5f6366d2fa
1 змінених файлів з 1 додано та 0 видалено
  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)