org.apache.camel.processor.idempotent.IdempotentOnCompletion Maven / Gradle / Ivy
/*
* 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.IdempotentRepository;
import org.apache.camel.spi.Synchronization;
import org.apache.camel.support.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;
}
@Override
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);
}
}
@Override
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
idempotentRepository.add(exchange, messageId);
}
idempotentRepository.confirm(exchange, 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) {
idempotentRepository.remove(exchange, messageId);
LOG.debug("Removed from repository as exchange failed: {} with id: {}", exchange, messageId);
}
}
@Override
public String toString() {
return "IdempotentOnCompletion[" + messageId + ']';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy