shithub: furgit

ref: 040b572d95e4ca27e1ada6113c405b8a1eb4a669
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
}