github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/storage/chunks_queue.go (about) 1 package storage 2 3 import ( 4 "github.com/onflow/flow-go/model/chunks" 5 ) 6 7 type ChunksQueue interface { 8 StoreChunkLocator(locator *chunks.Locator) (bool, error) 9 10 LatestIndex() (uint64, error) 11 12 AtIndex(index uint64) (*chunks.Locator, error) 13 }