From e83d9ee4edf274791c934500f74ab3a071f34ecf Mon Sep 17 00:00:00 2001 From: boyce Date: Fri, 4 Sep 2020 09:53:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8E=9F=E5=A7=8BRPC?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rpc/rpchandler.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpc/rpchandler.go b/rpc/rpchandler.go index 0c75048..7f19479 100644 --- a/rpc/rpchandler.go +++ b/rpc/rpchandler.go @@ -76,6 +76,8 @@ type IRpcHandler interface { AsyncCallNode(nodeId int,serviceMethod string,args interface{},callback interface{}) error CallNode(nodeId int,serviceMethod string,args interface{},reply interface{}) error GoNode(nodeId int,serviceMethod string,args interface{}) error + RawGoNode(nodeId int,serviceMethod string,args []byte,additionParam interface{}) error + RawCastGo(serviceMethod string,args []byte,additionParam interface{}) } var rawAdditionParamValueNull reflect.Value