类 InvokeResponse
- java.lang.Object
-
- com.baidubce.model.AbstractBceResponse
-
- com.baidubce.services.cfc.model.CfcResponse
-
- com.baidubce.services.cfc.model.InvokeResponse
-
- 所有已实现的接口:
Serializable
public class InvokeResponse extends CfcResponse
Response object for invoking a CFC function- 另请参阅:
- 序列化表格
-
-
字段概要
-
从类继承的字段 com.baidubce.model.AbstractBceResponse
metadata
-
-
构造器概要
构造器 构造器 说明 InvokeResponse()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetBceLogResult()Get the log of invoking the user functionbyte[]getPayload()Get the result of invoking the user functionvoidsetBceLogResult(String bceLogResult)Set the log of invoking the user functionvoidsetPayload(byte[] payload)Set the result of invoking the user function-
从类继承的方法 com.baidubce.services.cfc.model.CfcResponse
setMetadata, toString
-
从类继承的方法 com.baidubce.model.AbstractBceResponse
getMetadata
-
-
-
-
方法详细资料
-
getPayload
public byte[] getPayload()
Get the result of invoking the user function- 返回:
- The result of invoking the user function
-
setPayload
public void setPayload(byte[] payload)
Set the result of invoking the user function- 参数:
payload- The result of invoking the user function
-
getBceLogResult
public String getBceLogResult()
Get the log of invoking the user function- 返回:
- The log of invoking the user function
-
setBceLogResult
public void setBceLogResult(String bceLogResult)
Set the log of invoking the user function- 参数:
bceLogResult- The log of invoking the user function
-
-