summaryrefslogtreecommitdiff
path: root/pkg/plugins/informer/interface.go
blob: 27139ae14d87009e56e5fd7cfb953d4bd5352cac (plain)
1
2
3
4
5
6
7
8
package informer

import "github.com/spiral/roadrunner/v2/interfaces/worker"

// Informer used to get workers from particular plugin or set of plugins
type Informer interface {
	Workers() []worker.BaseProcess
}