bbolt/rwtransaction.go

8 lines
198 B
Go

package bolt
// RWTransaction represents a transaction that can read and write data.
// Only one read/write transaction can be active for a DB at a time.
type RWTransaction struct {
Transaction
}