blob: 7be1af616ccf2a29516a904ed7e50de186fcb67a (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package refstore
// ReadWriteStore supports reading, atomic transactions, and non-atomic batches.
type ReadWriteStore interface {
ReadingStore
TransactionalStore
BatchStore
}
|