2
0

Add banchmarks with cancelled acquires

This commit is contained in:
Jan Dubsky
2022-09-30 10:02:32 +02:00
committed by Jack Christensen
parent 47b52af713
commit 4fbc609092
3 changed files with 92 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
package puddle
import "context"
func (p *Pool[T]) AcquireRaw(ctx context.Context) (*Resource[T], error) {
return p.acquire(ctx)
}