2018-10-05 11:43:56 +00:00
|
|
|
package storage
|
|
|
|
|
2018-11-01 18:44:56 +00:00
|
|
|
import (
|
2019-01-08 00:37:16 +00:00
|
|
|
"github.com/influxdata/influxdb/models"
|
2018-11-01 18:44:56 +00:00
|
|
|
)
|
2018-10-05 11:43:56 +00:00
|
|
|
|
|
|
|
// PointsWriter describes the ability to write points into a storage engine.
|
|
|
|
type PointsWriter interface {
|
|
|
|
WritePoints([]models.Point) error
|
|
|
|
}
|