ref: d2d3ce370816d178cc0beb4271123ee37d07657c
dir: /refstore/read_write_store.go/
package refstore
// ReadWriteStore supports reading, atomic transactions, and non-atomic batches.
type ReadWriteStore interface {
ReadingStore
TransactionalStore
BatchStore
}