com.amazonaws.services.sqs.model.Message.addMessageAttributesEntry()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(117)

本文整理了Java中com.amazonaws.services.sqs.model.Message.addMessageAttributesEntry()方法的一些代码示例,展示了Message.addMessageAttributesEntry()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Message.addMessageAttributesEntry()方法的具体详情如下:
包路径:com.amazonaws.services.sqs.model.Message
类名称:Message
方法名:addMessageAttributesEntry

Message.addMessageAttributesEntry介绍

[英]Each message attribute consists of a Name, Type, and Value. For more information, see Message Attribute Items in the Amazon SQS Developer Guide.

The method adds a new key-value pair into MessageAttributes parameter, and returns a reference to this object so that method calls can be chained together.
[中]每个消息属性由名称、类型和值组成。有关更多信息,请参阅《Amazon SQS开发人员指南》中的{$0$}。
该方法将一个新的键值对添加到MessageAttributes参数中,并返回对此对象的引用,以便将方法调用链接在一起。

代码示例

代码示例来源:origin: aws/aws-sdk-java

message.addMessageAttributesEntry(entry.getKey(), entry.getValue());
continue;

代码示例来源:origin: aws-amplify/aws-sdk-android

Entry<String, MessageAttributeValue> entry = MessageAttributesMapEntryUnmarshaller
    .getInstance().unmarshall(context);
message.addMessageAttributesEntry(entry.getKey(), entry.getValue());
continue;

代码示例来源:origin: com.amazonaws/aws-java-sdk-sqs

message.addMessageAttributesEntry(entry.getKey(), entry.getValue());
continue;

代码示例来源:origin: com.amazonaws/aws-android-sdk-sqs

Entry<String, MessageAttributeValue> entry = MessageAttributesMapEntryUnmarshaller
    .getInstance().unmarshall(context);
message.addMessageAttributesEntry(entry.getKey(), entry.getValue());
continue;

相关文章