cic-chain-events/internal/pool/pool.go

25 lines
405 B
Go
Raw Normal View History

2023-01-05 12:45:09 +01:00
package pool
import (
"context"
2023-01-05 12:45:09 +01:00
"time"
"github.com/alitto/pond"
)
type Opts struct {
Concurrency int
QueueSize int
2023-01-05 12:45:09 +01:00
}
// NewPool creates a fixed size (and buffered) go routine worker pool.
func NewPool(ctx context.Context, o Opts) *pond.WorkerPool {
2023-01-05 12:45:09 +01:00
return pond.New(
o.Concurrency,
o.QueueSize,
pond.MinWorkers(o.Concurrency),
2023-01-05 12:45:09 +01:00
pond.IdleTimeout(time.Second*1),
pond.Context(ctx),
2023-01-05 12:45:09 +01:00
)
}