shithub: furgit

ref: 02645cbbc0704cd5e0fdb3b48be0c02eb5e3ab01
dir: /refstore/read_write_store.go/

View raw version
package refstore

// ReadWriteStore supports reading, atomic transactions, and non-atomic batches.
type ReadWriteStore interface {
	ReadingStore
	TransactionalStore
	BatchStore
}