Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arnikola committed Nov 27, 2020
1 parent f974960 commit be77b19
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/dbnode/persist/fs/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,11 @@ type DataFileSetSeeker interface {

// SeekWideEntry seeks in a manner similar to SeekIndexEntry, but
// instead yields a wide entry checksum of the series.
SeekWideEntry(id ident.ID, filter schema.WideEntryFilter, resources ReusableSeekerResources) (xio.WideEntry, error)
SeekWideEntry(
id ident.ID,
filter schema.WideEntryFilter,
resources ReusableSeekerResources,
) (xio.WideEntry, error)

// Range returns the time range associated with data in the volume
Range() xtime.Range
Expand Down Expand Up @@ -260,7 +264,11 @@ type ConcurrentDataFileSetSeeker interface {
SeekIndexEntry(id ident.ID, resources ReusableSeekerResources) (IndexEntry, error)

// SeekWideEntry is the same as in DataFileSetSeeker.
SeekWideEntry(id ident.ID, filter schema.WideEntryFilter, resources ReusableSeekerResources) (xio.WideEntry, error)
SeekWideEntry(
id ident.ID,
filter schema.WideEntryFilter,
resources ReusableSeekerResources,
) (xio.WideEntry, error)

// ConcurrentIDBloomFilter is the same as in DataFileSetSeeker.
ConcurrentIDBloomFilter() *ManagedConcurrentBloomFilter
Expand Down

0 comments on commit be77b19

Please sign in to comment.