RPC传输原始数据优化

This commit is contained in:
lifeiyi
2021-01-09 16:57:23 +08:00
parent f7fa7ab436
commit 3e47d2da3a
2 changed files with 9 additions and 6 deletions

View File

@@ -53,7 +53,8 @@ type IRpcResponseData interface {
type IRawInputArgs interface {
GetRawData() []byte //获取原始数据
DoGc() //处理完成,回收内存
DoFree() //处理完成,回收内存
DoEscape() //逃逸,GC自动回收
}
type RpcHandleFinder interface {