本文整理匯總了Java中javax.jms.Message.getJMSReplyTo方法的典型用法代碼示例。如果您正苦於以下問題:Java Message.getJMSReplyTo方法的具體用法?Java Message.getJMSReplyTo怎麽用?Java Message.getJMSReplyTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.jms.Message
的用法示例。
在下文中一共展示了Message.getJMSReplyTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isValidRequestResponse
import javax.jms.Message; //導入方法依賴的package包/類
/**
* Since we use a request/response communication style with the client,
* we must ensure that tha appropriate fields are set.
*/
private boolean isValidRequestResponse(Message incoming) {
try {
if (incoming.getJMSCorrelationID() == null) {
getLogger().warn("JMSCorrelationID is not set! Will not process request");
return false;
}
if (incoming.getJMSReplyTo() == null) {
getLogger().warn("JMSReplyTo is not set! Will not process request");
return false;
}
} catch (JMSException e) {
getLogger().warn(
"Failed to read JMSCorrelationID/JMSReplyTo. " +
"Will not process request. Exception message = {}", e.getMessage());
return false;
}
return true;
}
示例2: onMessage
import javax.jms.Message; //導入方法依賴的package包/類
@Override
public void onMessage(Message request) {
try {
LOG.info("Received '{}' request on '{}'", ((TextMessage) request).getText(), request.getJMSDestination());
// get the replyTo from the request as response destination
Destination replyDestination = request.getJMSReplyTo();
// create and send response
TextMessage replyMessage = session.createTextMessage("MyResponse");
replyProducer.send(replyDestination, replyMessage, this);
} catch (JMSException e) {
e.printStackTrace();
}
}