2015-07-06 12:31:52 +00:00
|
|
|
package tsdb
|
|
|
|
|
2015-10-05 17:55:20 +00:00
|
|
|
import "github.com/influxdb/influxdb/models"
|
2015-07-06 12:31:52 +00:00
|
|
|
|
2015-08-24 02:55:48 +00:00
|
|
|
// Executor is an interface for a query executor.
|
|
|
|
type Executor interface {
|
2015-11-23 22:40:08 +00:00
|
|
|
Execute(closing <-chan struct{}) <-chan *models.Row
|
2015-08-24 02:55:48 +00:00
|
|
|
}
|