type.gno
0.31 Kb ยท 11 lines
1package ingester
2
3// Type indicates an ingester type.
4type Type int
5
6const (
7 // TypeSingle indicates an ingester that can only ingest a single within a given period or no period.
8 TypeSingle Type = iota
9 // TypeMulti indicates an ingester that can ingest multiple within a given period or no period
10 TypeMulti
11)