shithub: furgit

ref: 6e917f2b9b6b64721d046d66311aa64589e19d9f
dir: /ref/store/transactional_store.go/

View raw version
package refstore

// TransactionalStore begins atomic reference transactions.
//
// Not every readable reference store is writable. Implementations should only
// satisfy TransactionalStore when they can stage and commit reference updates
// atomically within that backend.
type TransactionalStore interface {
	// BeginTransaction creates one new mutable transaction.
	BeginTransaction() (Transaction, error)
}