新增原始RPC接口

This commit is contained in:
boyce
2020-09-04 09:53:17 +08:00
parent bdf8fd492a
commit e83d9ee4ed

View File

@@ -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