org.mule.routing.AbstractCatchAllStrategy Maven / Gradle / Ivy
/*
* $Id: AbstractCatchAllStrategy.java 20740 2010-12-15 10:29:17Z dirk.olmes $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.routing;
import org.mule.api.MuleEvent;
import org.mule.api.routing.OutboundRouterCatchAllStrategy;
import org.mule.api.routing.RouterStatisticsRecorder;
import org.mule.api.routing.RoutingException;
import org.mule.management.stats.RouterStatistics;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* RouterCatchAllStrategy
is a strategy interface that allows developers to hook in custom code when
* an event is being routed on the inbound or outbound but does not match any of the criteria defined for the routing.
*
* Think of catch all strategies as a safety net for your events to ensure that all events will get processed. If you
* do not use conditional routing logic, you will not need a catch all strategy.
*
* Note that it is advised to use this base class over the {@link org.mule.api.routing.OutboundRouterCatchAllStrategy} interface
* so that the {@link org.mule.management.stats.RouterStatistics} are available.
*
* @see org.mule.routing.LoggingCatchAllStrategy
* @see org.mule.routing.ForwardingCatchAllStrategy
*/
public abstract class AbstractCatchAllStrategy implements OutboundRouterCatchAllStrategy, RouterStatisticsRecorder
{
/**
* logger used by this class
*/
protected transient Log logger = LogFactory.getLog(getClass());
/** Router statistics used to monitor if a catch all strategy is invoked and if any events are dispatched
* from the strategy i.e. from the {@link org.mule.routing.ForwardingCatchAllStrategy}.
*/
protected RouterStatistics statistics;
public RouterStatistics getRouterStatistics()
{
return statistics;
}
public void setRouterStatistics(RouterStatistics statistics)
{
this.statistics = statistics;
}
/**
* This method will be invoked when an event is received or being sent where the criteria of the router(s) do not
* match the current event.
*
* @return A result message from this processing. Depending on the messaging style being used this might become the
* response message to a client or remote service call.
* @throws org.mule.api.routing.RoutingException
* if there is a failure while processing this message.
*/
public final MuleEvent process(MuleEvent event) throws RoutingException
{
RouterStatistics stats = getRouterStatistics();
if(stats !=null && stats.isEnabled())
{
stats.incrementCaughtMessage();
}
else
{
logger.warn("Routing statistics not set on catch all strategy, this invocation will not be recorded.");
}
return doCatchMessage(event);
}
public abstract MuleEvent doCatchMessage(MuleEvent event) throws RoutingException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy