Files
notify/stream_batch_codec.go
T

7 lines
163 B
Go
Raw Permalink Normal View History

package notify
type streamBatchCodec struct {
encodeSingle func(streamFastDataFrame) ([]byte, error)
encodeBatch func([]streamFastDataFrame) ([]byte, error)
}