All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.processor.idempotent.IdempotentOnCompletion Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.camel.processor.idempotent;

import org.apache.camel.Exchange;
import org.apache.camel.spi.ExchangeIdempotentRepository;
import org.apache.camel.spi.IdempotentRepository;
import org.apache.camel.spi.Synchronization;
import org.apache.camel.util.ExchangeHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * On completion strategy for {@link org.apache.camel.processor.idempotent.IdempotentConsumer}.
 * 

* This strategy adds the message id to the idempotent repository in cast the exchange * was processed successfully. In case of failure the message id is not added. */ public class IdempotentOnCompletion implements Synchronization { private static final Logger LOG = LoggerFactory.getLogger(IdempotentOnCompletion.class); private final IdempotentRepository idempotentRepository; private final String messageId; private final boolean eager; private final boolean removeOnFailure; public IdempotentOnCompletion(IdempotentRepository idempotentRepository, String messageId, boolean eager, boolean removeOnFailure) { this.idempotentRepository = idempotentRepository; this.messageId = messageId; this.eager = eager; this.removeOnFailure = removeOnFailure; } public void onComplete(Exchange exchange) { if (ExchangeHelper.isFailureHandled(exchange)) { // the exchange did not process successfully but was failure handled by the dead letter channel // and thus moved to the dead letter queue. We should thus not consider it as complete. onFailedMessage(exchange, messageId); } else { onCompletedMessage(exchange, messageId); } } public void onFailure(Exchange exchange) { onFailedMessage(exchange, messageId); } /** * A strategy method to allow derived classes to overload the behavior of * processing a completed message * * @param exchange the exchange * @param messageId the message ID of this exchange */ protected void onCompletedMessage(Exchange exchange, String messageId) { if (!eager) { // if not eager we should add the key when its complete if (idempotentRepository instanceof ExchangeIdempotentRepository) { ((ExchangeIdempotentRepository) idempotentRepository).add(exchange, messageId); } else { idempotentRepository.add(messageId); } } if (idempotentRepository instanceof ExchangeIdempotentRepository) { ((ExchangeIdempotentRepository) idempotentRepository).confirm(exchange, messageId); } else { idempotentRepository.confirm(messageId); } } /** * A strategy method to allow derived classes to overload the behavior of * processing a failed message * * @param exchange the exchange * @param messageId the message ID of this exchange */ protected void onFailedMessage(Exchange exchange, String messageId) { if (removeOnFailure) { if (idempotentRepository instanceof ExchangeIdempotentRepository) { ((ExchangeIdempotentRepository) idempotentRepository).remove(exchange, messageId); } else { idempotentRepository.remove(messageId); } LOG.debug("Removed from repository as exchange failed: {} with id: {}", exchange, messageId); } } @Override public String toString() { return "IdempotentOnCompletion[" + messageId + ']'; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy