共用方式為


MethodResponse 類別

表示直接方法的回應。

MethodResponse 的初始化運算式。

繼承
builtins.object
MethodResponse

建構函式

MethodResponse(request_id, status, payload=None)

參數

名稱 Description
request_id
必要
str

要回應之 MethodRequest 的要求識別碼。

status
必要
int

MethodRequest 執行的狀態。

payload
dict, str, int, float, boolNone (<xref:JSON compatible values>)

要與回應一起傳送的 JSON 承載。 (選用)

預設值: None

變數

名稱 Description
request_id
str

要回應之 MethodRequest 的要求識別碼。

status
int

MethodRequest 執行的狀態。

payload

要與回應一起傳送的 JSON 承載。

方法

create_from_method_request

從 MethodRequest 建立 MethodResponse 的 Factory 方法。

create_from_method_request

從 MethodRequest 建立 MethodResponse 的 Factory 方法。

create_from_method_request(method_request, status, payload=None)

參數

名稱 Description
method_request
必要
<xref:MethodRequest.>

要回應的 MethodRequest 物件。

status
必要
int

MethodRequest 執行的狀態。

payload
預設值: None