使用完整合并消息对象下载并解析合并消息的参数。

interface DownloadCombineMessageByMessageInput {
    message: Message;
    timeoutMs?: number;
    maxItems?: number;
}

Properties

message: Message

合并消息对象。SDK 会从 message.body 中读取下载地址和密钥。

timeoutMs?: number

下载超时时间,单位为毫秒。未传时使用 SDK 默认值。

maxItems?: number

单次允许解码的最大消息数量。未传时使用 SDK 默认值。