blob: b975edd74d981080fdde501ef3f202db3a5a0542 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
}
|