描述符模块函数(实验性)

protorpc.remote 软件包提供以下函数:

is_error_status(status)

确定 RPC 状态是否出错。

参数
状态
将要进行错误状态检查的初始化 RpcStatus 消息。
check_rpc_status(status)

将错误状态转换为一个引发的异常。

参数
状态
将要进行错误状态检查的初始化 RpcStatus 消息。

如果 status 的状态为错误,则会引发RpcError

method(request_type=message_types.VoidMessage, response_type=message_types.VoidMessage)

修饰某个方法使其成为远程方法。

参数
request_type=message_types.VoidMessage
预期请求的消息类型。
response_type=message_types.VoidMessage
预期响应的消息类型。

返回修饰后的远程方法。该远程方法包含具有以下属性的 remote 属性:

方法
原始的、未修饰的方法
request_type
预期请求的消息类型。
response_type
预期响应的消息类型。

如果 request_typeresponse_type 参数不是适当的消息子类,则会引发TypeError

get_remote_method(method)

对于远程方法,会返回远程方法信息对象,否则返回 None。

参数
方法
要获取的方法。