wheat-cache/pkg/structure/define.go

28 lines
581 B
Go

package structure
type KeyBase struct {
}
func (k *KeyBase) SizeByte() int64 {
panic("not implemented") // TODO: Implement
}
// TODO RollBack 事务相关, V2 实现
func (k *KeyBase) RollBack() error {
panic("not implemented") // TODO: Implement
}
// Begin 事务相关, V2 实现
func (k *KeyBase) Begin() error {
panic("not implemented") // TODO: Implement
}
// Comment 事务相关, V2 实现
func (k *KeyBase) Comment() error {
panic("not implemented") // TODO: Implement
}
func (k *KeyBase) Encode() ([]byte, error) {
panic("not implemented") // TODO: Implement
}