Documentation
¶
Overview ¶
Package coding 编码相关的包
Index ¶
Constants ¶
View Source
const (
EmptyAvroSchema = "EMPTY_AVRO_SCHEMA"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Coder ¶
type Coder interface {
Encode(data interface{}) ([]byte, error)
Decode([]byte) (data interface{}, err error)
DecodeIn([]byte, interface{}) error
}
Coder 编码器
type FunInfo ¶
type FunInfo struct {
Name string
InSchema string
OutSchema string
ParamTyp []string
ResultTyp []string
HasContext bool
}
FunInfo 函数信息
type ReSharpFunc ¶
type ReSharpFunc func(in interface{}) interface{}
Click to show internal directories.
Click to hide internal directories.