2021-07-06 18:39:56 -07:00
|
|
|
package temporal
|
|
|
|
|
|
|
|
// Repo defines APIs for Temporal to access persistence layer.
|
|
|
|
type Repo interface {
|
|
|
|
SetNodesAt(names [][]byte, heights []int32) error
|
|
|
|
NodesAt(height int32) ([][]byte, error)
|
|
|
|
Close() error
|
2021-07-27 15:10:17 -04:00
|
|
|
Flush() error
|
2021-07-06 18:39:56 -07:00
|
|
|
}
|