miniflux-v2/worker/pool.go

36 lines
740 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
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/storage"
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(store *storage.Storage, 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, store: store}
2017-11-20 06:10:04 +01:00
go worker.Run(workerPool.queue)
}
return workerPool
}