码迷,mamicode.com
首页 > 其他好文 > 详细

Camel概念【Exchange 】

时间:2015-01-27 23:37:38      阅读:558      评论:0      收藏:0      [点我收藏+]

标签:

Exchange

An exchange in Camel is the message’s container during routing. (在camel中,exchange被当做路由交换的容器)

An exchange also provides support for the various types of interactions between systems, also known as message exchange patterns ( MEP s).  MEP s are used to differentiate between one-way and request-response messaging styles. The Camel exchange holds a pattern property that can be either

(exchange还为不同种类的系统交互提供了支持,这也被称作消息交互模式,MEP用于区分单向和交互的信息请求,exchange有着这样的模式特性:)
InOnly —A one-way message (also known as an  Event message).
For example,  JMS messaging is often one-way messaging.
InOut —A request-response message. For example,  HTTP -based transports are often request reply, where a client requests to retrieve a web page, waiting for the reply from the server.
Figure 1.5 illustrates the contents of an exchange in Camel.

技术分享

Let’s look at the elements of figure 1.5 in more detail:
Exchange  ID —A unique  ID that identifies the exchange. Camel will generate a default unique  ID ,if you don’t explicitly set one.(Exchange  ID 唯一id标识exchange,如果不显式的设置id值,camel将自动生成默认id)
MEP —A pattern that denotes whether you’re using the  InOnly or  InOut messaging style. When the pattern is  InOnly , the exchange contains an in message. For InOut , an out message also exists that contains the reply message for the caller.(记录InOnly或InOut的模式)

Exception—If an error occurs at any time during routing, an  Exception will be set in the exception field.
Properties—Similar to message headers(和message中的header很相似), but they last for the duration of the entire exchange. (但他在整个exchange过程中持续)Properties are used to contain global-level information(Properties用于存放全局信息), where as message headers are specific to a particular message. Camel itself will add various properties to the exchange during routing. You, as a developer, can store and retrieve properties at any point during the lifetime of an exchange.(在路由交换时,camel自身将向exchange中添加种类繁多的property,作为开发者的你,可以在exchange生命周期的任何时间点存取property
In message—This is the input message, which is mandatory(必须有). The in message contains the request message.
Out message—This is an optional message that only exists if the  MEP is  InOut (当模式为Inout时,才有).The out message contains the reply message.


We discussed Camel’s message model before the architecture because we wanted you to have a solid understanding of what a message is in Camel. After all, the most important aspect of Camel is routing messages. You’re now well prepared to learn more about Camel and its architecture.

Camel概念【Exchange 】

标签:

原文地址:http://my.oschina.net/anna153/blog/372476

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!