Package org.apache.camel.management
Class DelegatePerformanceCounter
- java.lang.Object
-
- org.apache.camel.management.DelegatePerformanceCounter
-
- All Implemented Interfaces:
PerformanceCounter
public class DelegatePerformanceCounter extends Object implements PerformanceCounter
Delegates to anotherPerformanceCounter. This is used to allow Camel to pre initialize these delegate performance counters when Camel creates the actual route from the model. Then later as the various processors, routes etc. is created and registered in theLifecycleStrategythen we link this to the realManagedPerformanceCountermbean so the mbean can gather statistics. This delegation is needed as how Camel is designed to register services in theLifecycleStrategyin various stages.
-
-
Constructor Summary
Constructors Constructor Description DelegatePerformanceCounter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcompletedExchange(org.apache.camel.Exchange exchange, long time)Executed when anExchangeis complete.voidfailedExchange(org.apache.camel.Exchange exchange)Executed when anExchangefailed.booleanisStatisticsEnabled()Are statistics enabled?voidprocessExchange(org.apache.camel.Exchange exchange, String type)Executed when anExchangeis about to be processed.voidsetCounter(PerformanceCounter counter)voidsetStatisticsEnabled(boolean statisticsEnabled)Sets whether statistics are enabled.StringtoString()
-
-
-
Constructor Detail
-
DelegatePerformanceCounter
public DelegatePerformanceCounter()
-
-
Method Detail
-
setCounter
public void setCounter(PerformanceCounter counter)
-
processExchange
public void processExchange(org.apache.camel.Exchange exchange, String type)
Description copied from interface:PerformanceCounterExecuted when anExchangeis about to be processed.- Specified by:
processExchangein interfacePerformanceCounter- Parameters:
exchange- the exchangetype- the node type
-
completedExchange
public void completedExchange(org.apache.camel.Exchange exchange, long time)
Description copied from interface:PerformanceCounterExecuted when anExchangeis complete.- Specified by:
completedExchangein interfacePerformanceCounter- Parameters:
exchange- the exchangetime- the time it took in millis to complete
-
failedExchange
public void failedExchange(org.apache.camel.Exchange exchange)
Description copied from interface:PerformanceCounterExecuted when anExchangefailed.- Specified by:
failedExchangein interfacePerformanceCounter- Parameters:
exchange- the exchange
-
isStatisticsEnabled
public boolean isStatisticsEnabled()
Description copied from interface:PerformanceCounterAre statistics enabled? They can be enabled and disabled at runtime- Specified by:
isStatisticsEnabledin interfacePerformanceCounter- Returns:
- whether statistics are enabled or not
-
setStatisticsEnabled
public void setStatisticsEnabled(boolean statisticsEnabled)
Description copied from interface:PerformanceCounterSets whether statistics are enabled. They can be enabled and disabled at runtime- Specified by:
setStatisticsEnabledin interfacePerformanceCounter- Parameters:
statisticsEnabled- whether statistics are enabled or not
-
-