shithub: furgit

ref: 1556cfb51d980ae8c5bf664ad69f3abd46f02386
dir: /refstore/read_write_store.go/

View raw version
package refstore

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