7 lines
163 B
Go
7 lines
163 B
Go
|
|
package notify
|
||
|
|
|
||
|
|
type streamBatchCodec struct {
|
||
|
|
encodeSingle func(streamFastDataFrame) ([]byte, error)
|
||
|
|
encodeBatch func([]streamFastDataFrame) ([]byte, error)
|
||
|
|
}
|