blob: 8e3b922b888a76a71f1dadff8eb4cad39a77c63c (
plain)
1
2
3
4
5
6
7
8
|
package informer
import "github.com/spiral/roadrunner/v2/pkg/worker"
// Informer used to get workers from particular plugin or set of plugins
type Informer interface {
Workers() []worker.BaseProcess
}
|