-
Notifications
You must be signed in to change notification settings - Fork 178
/
collections.go
36 lines (27 loc) · 1.29 KB
/
collections.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package storage
import (
"github.com/onflow/flow-go/model/flow"
)
// Collections represents persistent storage for collections.
type Collections interface {
// StoreLight inserts the collection. It does not insert, nor check
// existence of, the constituent transactions.
StoreLight(collection *flow.LightCollection) error
// Store inserts the collection keyed by ID and all constituent
// transactions.
Store(collection *flow.Collection) error
// Remove removes the collection and all constituent transactions.
Remove(collID flow.Identifier) error
// LightByID returns collection with the given ID. Only retrieves
// transaction hashes.
LightByID(collID flow.Identifier) (*flow.LightCollection, error)
// ByID returns the collection with the given ID, including all
// transactions within the collection.
ByID(collID flow.Identifier) (*flow.Collection, error)
// StoreLightAndIndexByTransaction inserts the collection (only transactions hashes) and adds a transaction id index
// for each of the transactions within the collection
StoreLightAndIndexByTransaction(collection *flow.LightCollection) error
// LightByTransactionID returns the collection for the given transaction ID. Only retrieves
// transaction hashes.
LightByTransactionID(txID flow.Identifier) (*flow.LightCollection, error)
}