shithub: furgit

ref: b90593c9b83f71de343e27cd1b489dff79bd4ac7
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
}