如何在WSO2 ESB 5.0中设置JMS消息到期属性

时间:2017-06-13 07:01:18

标签: jms activemq wso2esb wso2ei

我正在尝试通过#include <stdio.h> void swap(int *xp, int *yp) { *xp = *xp ^ *yp; *yp = *xp ^ *yp; *xp = *xp ^ *yp; } int main() { int x = 10; swap(&x, &x); printf("After swap(&x, &x): x = %d", x); // prints x == 0 return 0; } ActiveMQ上发送jms消息。我没有从WSO2找到任何属性来设置JMS消息WSO2 ESB。我试过下面的财产,但没有工作。

expiry time

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

可能的值是JMS_DELIVERY_TIME 根据

https://github.com/wso2/carbon-transports/blob/master/jms/org.wso2.carbon.transport.jms/src/main/java/org/wso2/carbon/transport/jms/utils/JMSConstants.java

但我认为它还没有实现,因为IdeaIntellj突出显示常量

public static final String JMS_DELIVERY_TIME = "JMS_DELIVERY_TIME";

未使用