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