Interface ManagedConsumerCacheMBean
-
- All Superinterfaces:
ManagedServiceMBean
public interface ManagedConsumerCacheMBean extends ManagedServiceMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Integer
getMaximumCacheSize()
Integer
getSize()
String
getSource()
void
purge()
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedServiceMBean
getCamelId, getCamelManagementName, getRouteId, getServiceType, getState, isStaticService, isSupportSuspension, isSuspended, resume, start, stop, suspend
-
-
-
-
Method Detail
-
getSource
@ManagedAttribute(description="Source") String getSource()
-
getSize
@ManagedAttribute(description="Number of elements cached") Integer getSize()
-
getMaximumCacheSize
@ManagedAttribute(description="Maximum cache size (capacity)") Integer getMaximumCacheSize()
-
purge
@ManagedOperation(description="Purges the cache") void purge()
-
-