org.apache.camel.api.management.mbean
Interface ManagedTypeConverterRegistryMBean
- All Superinterfaces:
- ManagedServiceMBean
- All Known Implementing Classes:
- ManagedTypeConverterRegistry
public interface ManagedTypeConverterRegistryMBean
- extends ManagedServiceMBean
getAttemptCounter
@ManagedAttribute(description="Number of type conversion attempts")
long getAttemptCounter()
getHitCounter
@ManagedAttribute(description="Number of type conversion hits (successful conversions)")
long getHitCounter()
getMissCounter
@ManagedAttribute(description="Number of type conversion misses (no suitable type converter)")
long getMissCounter()
getFailedCounter
@ManagedAttribute(description="Number of type conversion failures (failed conversions)")
long getFailedCounter()
resetTypeConversionCounters
@ManagedOperation(description="Resets the type conversion counters")
void resetTypeConversionCounters()
isStatisticsEnabled
@ManagedAttribute(description="Utilization statistics enabled")
boolean isStatisticsEnabled()
setStatisticsEnabled
@ManagedAttribute(description="Utilization statistics enabled")
void setStatisticsEnabled(boolean statisticsEnabled)
Apache CAMEL