mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
14 lines
335 B
Go
14 lines
335 B
Go
|
package tsdb
|
||
|
|
||
|
import "github.com/influxdata/influxdb/influxql"
|
||
|
|
||
|
// EOF represents a "not found" key returned by a Cursor.
|
||
|
const EOF = influxql.ZeroTime
|
||
|
|
||
|
// Cursor represents an iterator over a series.
|
||
|
type Cursor interface {
|
||
|
SeekTo(seek int64) (key int64, value interface{})
|
||
|
Next() (key int64, value interface{})
|
||
|
Ascending() bool
|
||
|
}
|