本文整理匯總了Java中org.apache.camel.Exchange.removeProperty方法的典型用法代碼示例。如果您正苦於以下問題:Java Exchange.removeProperty方法的具體用法?Java Exchange.removeProperty怎麽用?Java Exchange.removeProperty使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.camel.Exchange
的用法示例。
在下文中一共展示了Exchange.removeProperty方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onCompletion
import org.apache.camel.Exchange; //導入方法依賴的package包/類
@Override
public void onCompletion(Exchange exchange) {
if (wrappedAggregationStrategy != null
&& wrappedAggregationStrategy instanceof CompletionAwareAggregationStrategy) {
((CompletionAwareAggregationStrategy) wrappedAggregationStrategy).onCompletion(exchange);
}
// Remove exception, fault and redelivery info from exchange
exchange.setException(null);
exchange.removeProperty(Exchange.FAILURE_HANDLED);
exchange.removeProperty(Exchange.FAILURE_ENDPOINT);
exchange.removeProperty(Exchange.FAILURE_ROUTE_ID);
exchange.removeProperty(Exchange.ERRORHANDLER_CIRCUIT_DETECTED);
exchange.removeProperty(Exchange.ERRORHANDLER_HANDLED);
exchange.removeProperty(Exchange.EXCEPTION_HANDLED);
exchange.removeProperty(Exchange.EXCEPTION_CAUGHT);
Message message = exchange.hasOut() ? exchange.getOut() : exchange.getIn();
message.setFault(false);
message.removeHeader(Exchange.REDELIVERED);
message.removeHeader(Exchange.REDELIVERY_COUNTER);
message.removeHeader(Exchange.REDELIVERY_DELAY);
message.removeHeader(Exchange.REDELIVERY_EXHAUSTED);
message.removeHeader(Exchange.REDELIVERY_MAX_COUNTER);
}
示例2: success
import org.apache.camel.Exchange; //導入方法依賴的package包/類
public void success(Exchange exchange){
Object obj = exchange.getProperty(EXCHANGE_PERF_PROPERTY);
long cost = -1;
if(obj != null){
cost = System.currentTimeMillis() - (long) obj;
exchange.removeProperty(EXCHANGE_PERF_PROPERTY);
}
logger.debug("success|{}|{}|{}",cost,exchange.getIn().getHeaders(),exchange.getIn().getBody());
requestIdManager.clean(exchange);
}
示例3: error
import org.apache.camel.Exchange; //導入方法依賴的package包/類
public void error(Exchange exchange){
Object obj = exchange.getProperty(EXCHANGE_PERF_PROPERTY);
long cost = -1;
if(obj != null){
cost = System.currentTimeMillis() - (long) obj;
exchange.removeProperty(EXCHANGE_PERF_PROPERTY);
}
String ex = "";
if(exchange.getException() != null){
ex = exchange.getException().getMessage();
exchange.removeProperty(EXCHANGE_PERF_PROPERTY);
}
logger.debug("error{}|{}|{}|{}",ex,cost,exchange.getIn().getHeaders(),exchange.getIn().getBody());
requestIdManager.clean(exchange);
}