summaryrefslogtreecommitdiff
path: root/plugins/jobs/interface.go
blob: d013d320fa039bf97cea794cc0518c55ed2f9248 (plain)
1
2
3
4
5
6
7
8
9
package jobs

// todo naming
type Consumer interface {
	Push()
	Stat()
	Consume(*Pipeline)
	Register(*Pipeline)
}