shithub: furgit

ref: 65a6439638a18e4317e144a0117db7604a2f2940
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
}