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