1
0
Fork 0
telegraf/plugins/common/parallel/parallel.go

9 lines
121 B
Go
Raw Permalink Normal View History

package parallel
import "github.com/influxdata/telegraf"
type Parallel interface {
Enqueue(telegraf.Metric)
Stop()
}