summaryrefslogtreecommitdiff
path: root/plugins/informer/interface.go
blob: 45f44691eb7c7ff85b586ea809cbb044ce44ea87 (plain)
1
2
3
4
5
6
7
8
9
10
package informer

import (
	"github.com/spiral/roadrunner/v2/pkg/process"
)

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