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