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