influxdb/tsdb/executor.go

9 lines
168 B
Go
Raw Normal View History

package tsdb
import "github.com/influxdb/influxdb/models"
// Executor is an interface for a query executor.
type Executor interface {
Execute() <-chan *models.Row
}