Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Codec ¶
type Codec interface {
// Type is the codec kind
Type() arhatgopb.CodecType
// NewEncoder creates a new Encoder which will encode messages to the Writer
NewEncoder(w io.Writer) Encoder
// NewEncoder creates a new Decoder which will decode messages from the Reader
NewDecoder(r io.Reader) Decoder
// Unmarshal non stream data
Unmarshal(data []byte, out interface{}) error
// Marshal v as non stream data
Marshal(v interface{}) ([]byte, error)
}
Codec knows how to encode/decode all kinds of data, including stream data
type Decoder ¶
type Decoder interface {
// Decode one message from stream
Decode(out interface{}) error
}
Decoder for stream data decoding
type Encoder ¶
type Encoder interface {
// Encode one message to stream
Encode(any interface{}) error
}
Encoder for stream data encoding
type Handler ¶
type Handler interface {
// HandleCmd process one command per function call, payload is non stream data
HandleCmd(id uint64, kind arhatgopb.CmdType, payload []byte) (interface{}, error)
}
Handler for controller
type MarshalFunc ¶ added in v0.3.0
type UnmarshalFunc ¶ added in v0.3.0
Click to show internal directories.
Click to hide internal directories.