Skip to content
This repository has been archived by the owner on Oct 17, 2018. It is now read-only.

Commit

Permalink
[unaggregated iterator] move ignoreHigherVersion field into group of …
Browse files Browse the repository at this point in the history
…immutable fields
  • Loading branch information
Jerome Froelich committed Aug 18, 2017
1 parent b105630 commit b29074a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions protocol/msgpack/unaggregated_iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ const (
type unaggregatedIterator struct {
iteratorBase

largeFloatsSize int
largeFloatsPool pool.FloatsPool
iteratorPool UnaggregatedIteratorPool

largeFloatsSize int
largeFloatsPool pool.FloatsPool
iteratorPool UnaggregatedIteratorPool
ignoreHigherVersion bool
closed bool
metric unaggregated.MetricUnion
policiesList policy.PoliciesList
id id.RawID
timerValues []float64
cachedPolicies [][]policy.Policy
cachedPoliciesList policy.PoliciesList

closed bool
metric unaggregated.MetricUnion
policiesList policy.PoliciesList
id id.RawID
timerValues []float64
cachedPolicies [][]policy.Policy
cachedPoliciesList policy.PoliciesList
}

// NewUnaggregatedIterator creates a new unaggregated iterator.
Expand Down

0 comments on commit b29074a

Please sign in to comment.