MCPcopy
hub / github.com/prometheus/prometheus / txRingIterator

Struct txRingIterator

tsdb/isolation.go:302–306  ·  view source on GitHub ↗

txRingIterator lets you iterate over the ring. It doesn't terminate, it DOESN'T terminate.

Source from the content-addressed store, hash-verified

300// txRingIterator lets you iterate over the ring. It doesn't terminate,
301// it DOESN'T terminate.
302type txRingIterator struct {
303 ids []uint64
304
305 pos uint32
306}
307
308func (it *txRingIterator) At() uint64 {
309 return it.ids[it.pos]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected