miniflux-v2/worker/pool.go

37 lines
806 B
Go
Raw Normal View History

// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-20 06:10:04 +01:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package worker // import "miniflux.app/worker"
2017-11-20 06:10:04 +01:00
import (
2018-08-25 06:51:50 +02:00
"miniflux.app/model"
"miniflux.app/reader/feed"
2017-11-20 06:10:04 +01:00
)
// Pool handles a pool of workers.
type Pool struct {
2017-11-20 06:10:04 +01:00
queue chan model.Job
}
// Push send a list of jobs to the queue.
func (p *Pool) Push(jobs model.JobList) {
for _, job := range jobs {
p.queue <- job
}
2017-11-20 06:10:04 +01:00
}
// NewPool creates a pool of background workers.
func NewPool(feedHandler *feed.Handler, nbWorkers int) *Pool {
workerPool := &Pool{
2017-11-20 06:10:04 +01:00
queue: make(chan model.Job),
}
for i := 0; i < nbWorkers; i++ {
worker := &Worker{id: i, feedHandler: feedHandler}
go worker.Run(workerPool.queue)
}
return workerPool
}