本文整理汇总了Java中org.apache.camel.util.ExchangeHelper.copyExchangeAndSetCamelContext方法的典型用法代码示例。如果您正苦于以下问题:Java ExchangeHelper.copyExchangeAndSetCamelContext方法的具体用法?Java ExchangeHelper.copyExchangeAndSetCamelContext怎么用?Java ExchangeHelper.copyExchangeAndSetCamelContext使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.camel.util.ExchangeHelper
的用法示例。
在下文中一共展示了ExchangeHelper.copyExchangeAndSetCamelContext方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: prepareExchange
import org.apache.camel.util.ExchangeHelper; //导入方法依赖的package包/类
/**
* Strategy to prepare exchange for being processed by this consumer
*
* @param exchange the exchange
* @return the exchange to process by this consumer.
*/
protected Exchange prepareExchange(Exchange exchange) {
// send a new copied exchange with new camel context
Exchange newExchange = ExchangeHelper.copyExchangeAndSetCamelContext(exchange, endpoint.getCamelContext());
// set the from endpoint
newExchange.setFromEndpoint(endpoint);
return newExchange;
}
示例2: prepareExchange
import org.apache.camel.util.ExchangeHelper; //导入方法依赖的package包/类
/**
* Strategy to prepare exchange for being processed by this consumer
*
* @param exchange the exchange
* @return the exchange to process by this consumer.
*/
protected Exchange prepareExchange(Exchange exchange) {
// send a new copied exchange with new camel context (do not handover completions)
Exchange newExchange = ExchangeHelper.copyExchangeAndSetCamelContext(exchange, endpoint.getCamelContext(), false);
// set the from endpoint
newExchange.setFromEndpoint(endpoint);
return newExchange;
}
示例3: prepareExchange
import org.apache.camel.util.ExchangeHelper; //导入方法依赖的package包/类
private Exchange prepareExchange(final Exchange exchange) {
// send a new copied exchange with new camel context
// don't copy handovers as they are handled by the Disruptor Event Handlers
final Exchange newExchange = ExchangeHelper
.copyExchangeAndSetCamelContext(exchange, endpoint.getCamelContext(), false);
// set the from endpoint
newExchange.setFromEndpoint(endpoint);
return newExchange;
}