Documentation ¶
Index ¶
Constants ¶
View Source
const ( StableStorePrefix = 's' LogStorePrefix = 'l' )
Variables ¶
View Source
var (
ErrBargeStopped = fmt.Errorf("barge has been stopped")
)
View Source
var (
ErrNotFound = fmt.Errorf("not found")
)
Functions ¶
This section is empty.
Types ¶
type Barge ¶
type ObjectSequence ¶
func (*ObjectSequence) Next ¶
func (s *ObjectSequence) Next() (uint8, error)
type Transaction ¶
type Transaction interface { Get(key []byte, value Decoder) error Set(key []byte, value Encoder) error SetRaw(key []byte, value []byte) error Delete(key []byte) error GetKeyIterator(prefix []byte, keyOnly bool, reverse bool) Iterator NextObjectID(objectPath []byte) (uint8, error) Rollback() error Commit() error }
Click to show internal directories.
Click to hide internal directories.