Darien Raymond 9 éve
szülő
commit
5f6366d2fa
1 módosított fájl, 1 hozzáadás és 0 törlés
  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)