miniflux-v2/worker/pool.go
Frédéric Guillot f0610bdd9c Refactor feed creation to allow setting most fields via API
Allow API clients to create disabled feeds or define field like "ignore_http_cache".
2021-01-02 16:48:22 -08:00

37 lines
787 B
Go

// Copyright 2018 Frédéric Guillot. All rights reserved.
// 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"
import (
"miniflux.app/model"
"miniflux.app/storage"
)
// Pool handles a pool of workers.
type Pool struct {
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
}
}
// NewPool creates a pool of background workers.
func NewPool(store *storage.Storage, nbWorkers int) *Pool {
workerPool := &Pool{
queue: make(chan model.Job),
}
for i := 0; i < nbWorkers; i++ {
worker := &Worker{id: i, store: store}
go worker.Run(workerPool.queue)
}
return workerPool
}