shithub: furgit

ref: f40daef1deefda4b76957f5d5728c4175c27be51
dir: /ref/store/read_write_store.go/

View raw version
package refstore

// ReadWriteStore supports reading, atomic transactions, and non-atomic batches.
type ReadWriteStore interface {
	ReadingStore
	TransactionalStore
	BatchStore
}