summaryrefslogtreecommitdiff
path: root/controller.go
blob: bda7ad6b6c75c85a3888e93ef1900147d5ef3379 (plain)
1
2
3
4
5
6
7
8
9
10
package roadrunner

// Controller observes pool state and decides if any worker must be destroyed.
type Controller interface {
	// Lock controller on given pool instance.
	Attach(p Pool) Controller

	// Detach pool watching.
	Detach()
}