本文整理了Java中org.apache.qpid.proton.message.Message.setTtl()
方法的一些代码示例,展示了Message.setTtl()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Message.setTtl()
方法的具体详情如下:
包路径:org.apache.qpid.proton.message.Message
类名称:Message
方法名:setTtl
暂无
代码示例来源:origin: apache/activemq-artemis
/**
* Sets the ttl header on the outgoing message.
*
* @param timeToLive the ttl value to set.
*/
public void setTimeToLive(long timeToLive) {
checkReadOnly();
lazyCreateHeader();
getWrappedMessage().setTtl(timeToLive);
}
代码示例来源:origin: com.ibm.mqlight/mqlight-api
protonMsg.setTtl(sendOptions.getTtl());
Map<String, Object> amqpProperties = new HashMap<>();
if ((properties != null) && !properties.isEmpty()) {
代码示例来源:origin: Azure/azure-service-bus-java
amqpMessage.setTtl(brokeredMessage.getTimeToLive().toMillis());
代码示例来源:origin: io.vertx/vertx-amqp-bridge
protonMsg.setDurable(testDurable);
protonMsg.setPriority(testPriority);
protonMsg.setTtl(testTtl);
protonMsg.setFirstAcquirer(testFirstAcquirer);
protonMsg.setDeliveryCount(testDeliveryCount);
内容来源于网络,如有侵权,请联系作者删除!