Files
EdgeNode/internal/utils/kvstore/value_encoder_string.go
GoEdgeLab c19be78e0d v1.4.1
2024-07-27 15:42:50 +08:00

25 lines
625 B
Go

// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package kvstore
type StringValueEncoder[T string] struct {
}
func NewStringValueEncoder[T string]() *StringValueEncoder[T] {
return &StringValueEncoder[T]{}
}
func (this *StringValueEncoder[T]) Encode(value T) ([]byte, error) {
return []byte(value), nil
}
func (this *StringValueEncoder[T]) EncodeField(value T, fieldName string) ([]byte, error) {
_ = fieldName
return this.Encode(value)
}
func (this *StringValueEncoder[T]) Decode(valueData []byte) (value T, err error) {
value = T(valueData)
return
}