本文整理汇总了Java中javax.jms.Message.getJMSPriority方法的典型用法代码示例。如果您正苦于以下问题:Java Message.getJMSPriority方法的具体用法?Java Message.getJMSPriority怎么用?Java Message.getJMSPriority使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.jms.Message
的用法示例。
在下文中一共展示了Message.getJMSPriority方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: send
import javax.jms.Message; //导入方法依赖的package包/类
/** Writes a JMS Message to the destination, as defined in the configuration file.
* @param session the JMS Session.
* @param message the JMS Message.
* @param destinationName the Destination to write to.
* @throws FrameworkException Indicates some system error.
* @throws ApplicationExceptions Indicates application error(s).
*/
static void send(Session session, Message message, String destinationName) throws FrameworkException, ApplicationExceptions {
try {
Destination destination = obtainDestination(destinationName);
MessageProducer producer = session.createProducer(destination);
int messagePriority = message.getJMSPriority();
if (messagePriority != producer.getPriority() && messagePriority >= 0 && messagePriority <= 9)
producer.setPriority(messagePriority);
producer.send(message);
if (log.isDebugEnabled())
log.debug("Sent message " + message + " to " + destinationName);
} catch (JMSException e) {
log.error("Error in sending a JMS Message", e);
throw new JaffaMessagingFrameworkException(JaffaMessagingFrameworkException.SEND_ERROR, null, e);
}
}