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